GraphQL OBJECT

PurchaseItemDelivery

Delivery information for the item purchased by the customer.

link Definition

  • type PurchaseItemDelivery {
  • # Way in which the product was delivered.
  • deliveryType: DeliveryType
  • # Status of the product delivery.
  • deliveryStatus: DeliveryStatus
  • # License key or download link plus text.
  • result: String!
  • # License key or download link.
  • resultRaw: String!
  • # Date and time when the license key expires.
  • linkExpirationTime: DateTime
  • # Name of the file that the customer downloads.
  • fileName: String!
  • # Number of license keys.
  • quantityRunningNo: Long!
  • # Running number of the license key or download link.
  • productDeliveryRunningNo: Long!
  • # Indicates whether the license key can be renewed.
  • canRenewKey: Boolean
  • # Indicates whether the download link can be renewed.
  • canRenewLink: Boolean
  • }