Skip to content

SeatPriceQuoteError

Public seat-pricing failures, without schema issues or internal Error fields.

const SeatPriceQuoteError: Schema.toTaggedUnion<"code", readonly [Schema.Struct<{
code: Schema.Literal<"invalid_seat_price_input">;
}>, Schema.Struct<{
code: Schema.Literal<"seat_quantity_out_of_range">;
quantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
minimumQuantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
maximumQuantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
}>, Schema.Struct<{
code: Schema.Literal<"seat_price_total_out_of_range">;
}>]>;