OBJECT

Quotation

A quotation

link GraphQL Schema definition

  • type Quotation {
  • # Acceptation date - format: YYYY-MM-DD
  • acceptedAt: Date
  • customer: Customer
  • # Quotation date - format: YYYY-MM-DD
  • date: Date
  • # Quote file if it has been generated
  • file: GeneratedFile
  • # DEPRECATED - Use `file` instead - URL to download the quotation file if it has
  • # been generated
  • fileUrl: String @deprecated( reason: "Use `file` instead" )
  • id: ID
  • # Creation date and time - format: YYYY-MM-DDThh:mm:sss
  • insertedAt: NaiveDateTime
  • items: [InvoiceItem]
  • # Quotation number
  • number: Int
  • # Quotation number left padded with zeros
  • numberStr: String
  • # Quotation prefix
  • prefix: String
  • recipient: InvoiceRecipient
  • trainingSession: TrainingSession
  • # Last update date and time - format: YYYY-MM-DDThh:mm:sss
  • updatedAt: NaiveDateTime
  • }