GraphQL OBJECT

ProductDelivery

link Definition

  • type ProductDelivery {
  • # Running number of the delivery.
  • runningNo: Int! @deprecated( reason: "Wrong field name, use 'runningNumber' instead." )
  • # Running number of the delivery.
  • runningNumber: Int!
  • # Way in which the product is delivered.
  • deliveryType: DeliveryType
  • # Options for delivery type CleverbridgeDeliversFullVersionByDownload.
  • downloadDeliveryOptions: ProductDeliveryDownloadOptions
  • # Options for delivery types CleverbridgeDeliversGenericLicenseInformation and
  • # CleverbridgeDeliversKey.
  • keyDeliveryOptions: ProductDeliveryKeyDeliveryOptions
  • # Number of months for which cleverbridge provides the online backup. Only for
  • # delivery type CleverbridgeProvidesOnlineBackup.
  • availabilityInMonths: Int
  • # Subscription specific delivery options.
  • subscriptionDeliveryOption: SubscriptionDeliveryOption!
  • # Product to which the follow-up relates.
  • product: Product
  • }