GraphQL OBJECT

SubscriptionIntervalDataItem

Interval data of the subscription item.

link Definition

  • type SubscriptionIntervalDataItem {
  • # Coupon code that was applied to this subscription item.
  • couponCode: String
  • # Has the customer already paid for the subscription item?
  • isPaid: Boolean
  • # Product details for the item.
  • productInformation: ProductInformation
  • # Quantity of the product.
  • quantity: Int
  • # The single discount for this item.
  • singleDiscount: Price
  • # The single price for this item.
  • singlePrice: Price
  • # Status of the subscription item.
  • status: SubscriptionItemStatus
  • # The total discount for this item.
  • totalDiscount: Price
  • # The total price for this item.
  • totalPrice: Price
  • # Version of subscription item.
  • version: Int
  • }