OBJECT
Invoice
An invoice
link GraphQL Schema definition
- type Invoice {
- # Code comptabilité analytique
- : String
- # ID of the invoice this one is an advance to, only present if this invoice is an
- # advance
- : ID
- # City of the invoice addressee (the entity that is linked to the invoice - it can
- # be a company, a trainee or a funding agency)
- : String
- # City code of the invoice addressee (the entity that is linked to the invoice -
- # it can be a company, a trainee or a funding agency)
- : String
- # Country code (max 2 char) of the invoice addressee (the entity that is linked to
- # the invoice - it can be a company, a trainee or a funding agency)
- : String
- : Customer
- # Date de facture
- : String
- # URL to download the invoice file if it has been generated
- : String
- # Mention libre
- : String
- : ID
- # Creation date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- : [InvoicePayment]
- : Boolean
- : [InvoiceItem]
- # Invoice is locked and can't be modified
- : Boolean
- # Numéro de facture
- : Int
- : String
- # Order form number. Must be less than 50 characters.
- : String
- : Int
- # Préfixe de facture
- : String
- : InvoiceRecipient
- # Référence de facture
- : String
- # Road address of the invoice addressee (the entity that is linked to the invoice
- # - it can be a company, a trainee or a funding agency)
- : String
- : TrainingSession
- # Last update date and time - format: YYYY-MM-DDThh:mm:sss
- : NaiveDateTime
- # DEPRECATED - Use `vat` from `items` instead
- : Float @deprecated( reason: "Use `vat` from `items` instead" )
- }