/** * @type TenantDto: Create or update tenants * * @property tenantId: * - **Max Length:** 8 * * @property merchantName: Name of the merchant. * - **Max Length:** 256 * * @property description: * - **Max Length:** 256 * * @property contact: * - **Max Length:** 256 * * @property emailAddress: Email address of the designated contact. * - **Max Length:** 200 * * @property phoneNo: Phone number of the designated contact. * - **Max Length:** 50 * */ export type TenantDto = { tenantId: string; merchantName: string; description: string; contact: string; emailAddress: string; phoneNo: string; } & { [key: string]: any; };