GraphQL OBJECT
SubscriptionQuoteSearchResultItem
The flat subscription quote as result of a search.
link Definition
- type SubscriptionQuoteSearchResultItem {
- # Unique Id of the subscription quote.
- : Int!
- # ID of the corresponding customer.
- : Int!
- # SubscriptionId of the subscription quote.
- : Int!
- # Information about client the subscription quote belongs to.
- : ClientInformation
- # Date and time when the subscription quote created.
- : DateTime
- # User who created the subscription quote.
- : UserAccountInformation
- # Date and time when the last edit occurred.
- : DateTime
- # User that last modified the subscription quote.
- : UserAccountInformation
- # Note to the subscription quote for internal usage.
- : String
- # Date when the quote will expire.
- : DateTime
- # Is the subscriptionQuote active.
- : Boolean!
- # The subscription quote items.
- : [RenewalQuoteItemSearchResult]!
- # Price of the customer.
- : Price!
- # Discount price of the customer.
- : Price!
- # URL pointing to the subscription quote pdf document.
- : String!
- # Scheduled alignment date of the subscription quote.
- : Date
- # Subscription alignment type of the subscription quote.
- : SubscriptionAlignmentType
- }