Skip to main content

object.pricing

Type: array of objects or object

Simple pricing:

{
"ticketType": "normal",
"price": 20,
"formattedPrice": "$20",
"originalPrice": 30,
"formattedOriginalPrice": "$30"
}

Ticket types pricing:

[
{
"ticketType": "student",
"price": 10,
"formattedPrice": "$10",
"originalPrice": 20,
"formattedOriginalPrice": "$20"
},
{
"ticketType": "normal",
"price": 20,
"formattedPrice": "$20",
"originalPrice": 30,
"formattedOriginalPrice": "$30"
}
]

formattedPrice and formattedOriginalPrice are the prices as formatted by the priceFormatter.

Have a look at the pricing page for information on the other fields.