OBJECT
Quotation
A quotation
link GraphQL Schema definition
- type Quotation {
- # Acceptation date - format: YYYY-MM-DD
- : Date
- : Customer
- # Quotation date - format: YYYY-MM-DD
- : Date
- # Quote file if it has been generated
- : GeneratedFile
- # DEPRECATED - Use `file` instead - URL to download the quotation file if it has
- # been generated
- : String @deprecated( reason: "Use `file` instead" )
- : ID
- # Creation date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- : [InvoiceItem]
- # Quotation number
- : Int
- # Quotation number left padded with zeros
- : String
- # Quotation prefix
- : String
- : InvoiceRecipient
- : TrainingSession
- # Last update date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- }