Receipt
(OBJECT)
Receipt for order
link GraphQL Schema definition
- type Receipt {
- # Receipt internal ID
- : ID!
- # receipt number
- : String!
- # payment type identificator
- : PaymentType
- # Date the receipt was created
- : DateTime
- # Date of payment
- : Date
- # Total amount of the receipt
- : Price
- # List of items
- : [ReceiptItem]
- # Order reference
- : Order
- }