GraphQL OBJECT
SubscriptionQuote
SubscriptionQuote.
link Definition
- type SubscriptionQuote {
- # Unique ID of the subscription quote.
- : Int!
- # The subscription.
- : Subscription!
- # The subscription interval the quote is valid for.
- : Int!
- # Date when the quote will expire.
- : DateTime!
- # the subscription quote items.
- : [RenewalQuoteItem]!
- # is the renewalQuote active.
- : Boolean!
- # Pricing information for the customer.
- : Pricing!
- # Pricing information of next interval.
- : Pricing!
- # Date and time when the subscription quote was created.
- : DateTime!
- # Date and time when the subscription quote was last modified.
- : DateTime!
- # User who created the subscription quote.
- : UserAccount!
- # User who last modified the subscription quote.
- : UserAccount!
- # URL pointing to the subscription quote pdf document.
- : String!
- # Note to the subscription quote for internal usage.
- : String
- # Coupon codes that have been applied to the subscription quote.
- : [String]
- # Scheduled alignment date of the subscription quote.
- : Date
- # Subscription alignment type of the subscription quote.
- : SubscriptionAlignmentType
- # Time between initial payment and first subscription billing event.
- : SubscriptionInterval
- # Time between billing events.
- : SubscriptionInterval
- # Next renewal date and time.
- : DateTime
- }