GraphQL GraphQL OBJECT

SubscriptionQuote

SubscriptionQuote.

link Definition

  • type SubscriptionQuote {
  • # Unique ID of the subscription quote.
  • id: Int!
  • # The subscription.
  • subscription: Subscription!
  • # The subscription interval the quote is valid for.
  • subscriptionInterval: Int!
  • # Date when the quote will expire.
  • expirationDate: DateTime!
  • # the subscription quote items.
  • items: [RenewalQuoteItem]!
  • # is the renewalQuote active.
  • isActive: Boolean!
  • # Pricing information for the customer.
  • customerPricing: Pricing!
  • # Pricing information of next interval.
  • nextIntervalCustomerPricing: Pricing!
  • # Date and time when the subscription quote was created.
  • creationDate: DateTime!
  • # Date and time when the subscription quote was last modified.
  • lastModifyDate: DateTime!
  • # User who created the subscription quote.
  • createdBy: UserAccount!
  • # User who last modified the subscription quote.
  • lastModifiedBy: UserAccount!
  • # URL pointing to the subscription quote pdf document.
  • pdfQuoteUrl: String!
  • # Note to the subscription quote for internal usage.
  • note: String
  • # Coupon codes that have been applied to the subscription quote.
  • couponCodes: [String]
  • # Scheduled alignment date of the subscription quote.
  • scheduledAlignmentDate: Date
  • # Subscription alignment type of the subscription quote.
  • subscriptionAlignmentType: SubscriptionAlignmentType
  • }