GraphQL OBJECT
PurchaseSearchResultProduct
Product purchased by the customer.
link Definition
- type PurchaseSearchResultProduct {
- # Unique ID of the product.
- : Long!
- # Product name used in customer communication.
- : String
- # Client who offers the product for sale.
- : Client!
- # Number of items.
- : Int!
- # subscription id of corresponding subscription item.
- : Int
- # Interval number of corresponding subscription item.
- : Int
- # Internal ID of the product.
- : String
- # License Key.
- : String @deprecated( reason: "Use licenseKeys instead to get all keys and not only the first." )
- # License Keys.
- : [String]
- # License expiration date.
- : DateTime
- # Type of the product.
- : ProductType
- # Promotion which was used for this product.
- : PurchaseSearchPromotion
- }