/** * @type Tenant: Tenant * * @property tenantId: * - **Max Length:** 8 * * @property merchantId: * * @property description: * - **Max Length:** 256 * * @property contact: * - **Max Length:** 256 * * @property emailAddress: * - **Max Length:** 200 * * @property phoneNo: * - **Max Length:** 50 * * @property isDeleted: * * @property status: * - **Max Length:** 16 * * @property tier: This read only value relates to the B2C Comerce realm of the customer. - XS = Bronze and Bronze+ - S = Silver and Silver+ - M = Gold and Gold+ - L = Platinum and Platinum+ * * @property requestQuotaPerMinute: This read only value shows the the number of requests that can be made per minute. * */ export type Tenant = { tenantId: string; merchantId: number; description: string; contact: string; emailAddress: string; phoneNo: string; isDeleted: boolean; status: string; tier: TenantTierEnum; requestQuotaPerMinute: number; } & { [key: string]: any; }; export type TenantTierEnum = 'XS' | 'S' | 'M' | 'L';