Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Current »

Structure

FieldTypeRequiredDescription
ticketNumberstringtrueIdentifier of this Ticket.
paxinttrueNumber of pax.
remarkstringfalseRemarks of this Ticket.
ticketItemsarray of TicketItemfalseDetailed 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"
}
  • No labels