GraphQL OBJECT

PurchaseSearchResultProduct

Product purchased by the customer.

link Definition

  • type PurchaseSearchResultProduct {
  • # Unique ID of the product.
  • productId: Long!
  • # Product name used in customer communication.
  • productName: String!
  • # Client who offers the product for sale.
  • client: Client!
  • # Number of items.
  • quantity: Int!
  • # Interval number of corresponding subscription item.
  • subscriptionItemInterval: Int
  • # Internal ID of the product.
  • internalProductId: String
  • # License Key.
  • licenseKey: String @deprecated( reason: "Use licenseKeys instead to get all keys and not only the first." )
  • # License Keys.
  • licenseKeys: [String]
  • # License expiration date.
  • licenseExpirationDate: DateTime
  • # Type of the product.
  • productType: ProductType
  • # Promotion which was used for this product.
  • promotion: PurchaseSearchPromotion
  • }