Skip to content

SeatPricing

Public per-seat price schema; quantity bounds are explicit and inclusive.

const SeatPricing: Schema.Struct<{
currency: Schema.brand<Schema.String, "Currency">;
unitAmount: Schema.brand<Schema.BigInt, "MinorCurrencyUnits">;
minimumQuantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
maximumQuantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
}>;