GraphQL OBJECT

RenewalQuoteSearchResultItem

The flat renewal quote as result of a search.

link Definition

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