Skip to content

SeatAssignmentAccessQuery

Public query deriving one member’s access from a beneficiary seat pool.

const SeatAssignmentAccessQuery: Schema.Struct<{
beneficiary: Schema.toTaggedUnion<"type", readonly [Schema.Struct<{
type: Schema.Literal<"customer">;
customerId: Schema.brand<Schema.String, "ExternalCustomerId">;
}>, Schema.Struct<{
type: Schema.Literal<"merchant_subject">;
subjectId: Schema.brand<Schema.String, "MerchantSubjectId">;
}>]>;
pool: Schema.brand<Schema.String, "SeatPoolKey">;
memberId: Schema.brand<Schema.String, "SeatAssignmentMemberId">;
entitlement: Schema.brand<Schema.String, "EntitlementKey">;
}>;