Ticket
Structure
Field | Type | Required | Description |
---|---|---|---|
ticketNumber | string | true | Identifier of this Ticket. Please important use number, if the invoice is summary entry. |
ticketSerie | string | false | Serie of ticket |
pax | int | true | Number of pax. |
remark | string | false | Remarks of this Ticket. |
ticketItems | array of TicketItem | false | Detailed items of the Ticket. |
JSON representation
{ "pax": 1, "remark": "Some remarks", "ticketItems": [{ "itemId": 1, "name": "test1", "costCenter": "B1", "itemCode": "1001", "quantity": 1, "price": 5.0 }, { "itemId": 2, "name": "test2", "costCenter": "B2", "itemCode": "1002", "quantity": 1, "price": 3.0 } ], "ticketNumber": "this-is-a-test", "ticketSerie" : "A" }