GraphQL OBJECT

RenewalQuote

RenewalQuote.

link Definition

  • type RenewalQuote {
  • # Unique ID of the renewal 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 renewal 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 renewal quote was created.
  • creationDate: DateTime!
  • # Date and time when the renewal quote was last modified.
  • lastModifyDate: DateTime!
  • # User who created the renewal quote.
  • createdBy: UserAccount!
  • # User who last modified the renewal quote.
  • lastModifiedBy: UserAccount!
  • # URL pointing to the renewal quote pdf document.
  • pdfQuoteUrl: String!
  • # Note to the renewal quote for internal usage.
  • note: String
  • # Coupon codes that have been applied to the renewal quote.
  • couponCodes: [String]
  • }