Skip to content

SeatPriceQuote

Public arithmetic quote schema; native bigint amounts and the multiplication invariant are retained.

const SeatPriceQuote: Schema.Struct<{
currency: Schema.brand<Schema.String, "Currency">;
quantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
unitAmount: Schema.brand<Schema.BigInt, "MinorCurrencyUnits">;
totalAmount: Schema.brand<Schema.BigInt, "MinorCurrencyUnits">;
}>;