GraphQL GraphQL OBJECT

SubscriptionQuoteSearchResultItem

The flat subscription quote as result of a search.

link Definition

  • type SubscriptionQuoteSearchResultItem {
  • # Unique Id of the subscription quote.
  • id: Int!
  • # ID of the corresponding customer.
  • customerId: Int!
  • # SubscriptionId of the subscription quote.
  • subscriptionId: Int!
  • # Information about client the subscription quote belongs to.
  • client: ClientInformation
  • # Date and time when the subscription quote created.
  • creationDate: DateTime
  • # User who created the subscription quote.
  • createdBy: UserAccountInformation
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime
  • # User that last modified the subscription quote.
  • lastModifiedBy: UserAccountInformation
  • # Note to the subscription quote for internal usage.
  • note: String
  • # Date when the quote will expire.
  • expirationDate: DateTime
  • # Is the subscriptionQuote active.
  • isActive: Boolean!
  • # The subscription quote items.
  • items: [RenewalQuoteItemSearchResult]!
  • # Price of the customer.
  • customerPrice: Price!
  • # Discount price of the customer.
  • customerDiscountPrice: Price!
  • # URL pointing to the subscription quote pdf document.
  • pdfQuoteUrl: String!
  • # Scheduled alignment date of the subscription quote.
  • scheduledAlignmentDate: Date
  • # Subscription alignment type of the subscription quote.
  • subscriptionAlignmentType: SubscriptionAlignmentType
  • }