Skip to content

SeatPriceQuoteInput

Quantity and pricing input for a side-effect-free seat quote.

const SeatPriceQuoteInput: Schema.Struct<{
pricing: 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">;
}>;
quantity: Schema.brand<Schema.Int, "SeatCapacityQuantity">;
}>;