- FeatureBundleResponseDTO
Feature within a feature bundle
Name to uniquely identify the feature. Example: "MyFeature"
Quantity of the feature (minimum value is 1). Example: 1
State of the feature. Valid values: draft, deployed, obsolete, inactive.
Version of the feature. Example: "1.0"
{ "featureName": "Example String", "quantity": 40, "state": "Example String", "version": "Example String" }
Feature within a feature bundle (response for getFeatureBundles query)
Feature name
Feature quantity in the bundle
State of the feature
Feature version
{ "name": "Example String", "quantity": 40, "state": "Example String", "version": "Example String" }
Feature bundle details with full information
Description of the feature bundle
Name of the feature bundle
List of features in the bundle
Current state of the feature bundle
{ "description": "Example String", "featureBundleName": "Example String", "featureList": [ { "__typename": "FeatureBundleFeatureResponse" } ], "state": "Example String" }
Response containing a single feature bundle
The feature bundle details
{ "featureBundle": { "__typename": "FeatureBundleGet" } }
Paginated response for feature bundles
List of feature bundles
Pagination information
{ "featureBundles": [ { "__typename": "FeatureBundleResponseDTO" } ], "pagination": { "__typename": "Pagination" } }
Feature bundle response object with summary information
Creation date of the feature bundle
Description of the feature bundle
Name of the feature bundle
List of features in the bundle
Last modification date of the feature bundle
Current state of the feature bundle
{ "creationDate": "Example String", "description": "Example String", "featureBundleName": "Example String", "features": [ { "__typename": "FeatureBundleFeatureResponseDTO" } ], "lastModifiedDate": "Example String", "state": "Example String" }
Response object representing a feature with full details
Creation date of the feature
Description of the feature
Last modification date of the feature
Name of the feature
Override properties for the feature
Current state of the feature (DRAFT, DEPLOYED, OBSOLETE, INACTIVE)
Version of the feature
Version format (FIXED or DATEBASED)
{ "createdOn": "Example String", "description": "Example String", "lastModifiedOn": "Example String", "name": "Example String", "overrideProperties": { "__typename": "OverrideProperties" }, "state": "Example String", "version": "Example String", "versionFormat": "Example String" }
Represents a license model entity
Issuer associated with the license model.
This field is applicable only when the LicenseModel is linked through Entitlement → LineItem → Product.
Returns null if no relevant parent association exists
License Model name
Notice associated with the license model.
This field is applicable only when the LicenseModel is linked through Entitlement → LineItem → Product.
Returns null if no relevant parent association exists
Serial number associated with the license model.
This field is applicable only when the LicenseModel is linked through Entitlement → LineItem → Product.
Returns null if no relevant parent association exists
Vendor string associated with the license model.
This field is applicable only when the LicenseModel is linked through Entitlement → LineItem → Product.
Returns null if no relevant parent association exists
{ "issuer": "Example String", "licenseModelName": "Example String", "notice": "Example String", "serialNumber": "Example String", "vendorString": "Example String" }
Represents a line item in the entitlement
Unique activation identifier of the line item
Duration that the line item will be active
Expiry date of the line item
Represents the current state of the line item active/inactive/draft/deployed/obsolete
Represents the line item order type
Indicates if the line item is permanent
Products associated with the line item
Represents the quantity of the line item
Start date of the line item
{ "activationId": "Example String", "duration": 40, "expiryDate": "Example String", "lineItemState": "Example String", "orderType": "Example String", "permanent": true, "products": [ { "__typename": "Product" } ], "quantity": 40, "startDate": "Example String" }
Detailed information about a line item
Unique activation identifier of the line item
Duration that the line item will be active
Expiry date of the line item
Represents the current state of the line item active/inactive/draft/deployed/obsolete
Represents the line item order type
Indicates if the line item is permanent
Products associated with the line item
Represents the quantity of the line item
Start date of the line item
{ "activationId": "Example String", "duration": 40, "expiryDate": "Example String", "lineItemState": "Example String", "orderType": "Example String", "permanent": true, "products": [ { "__typename": "Product" } ], "quantity": 40, "startDate": "Example String" }
GraphQL response for line item creation
List of line item creation results
{ "response": [ { "__typename": "LineItemResultEntry" } ] }