UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

28 lines (27 loc) 636 B
import TenantGroupDetail from './TenantGroupDetail'; /** * @export * @class TenantWithGroups */ export declare class TenantWithGroups { /** * Id of Tenant (required) * @type {string} * @memberof TenantWithGroups */ id?: string; /** * Email of Tenant (required) * @type {string} * @memberof TenantWithGroups */ email?: string; /** * List of all groups of Tenant (required) * @type {TenantGroupDetail[]} * @memberof TenantWithGroups */ groups?: TenantGroupDetail[]; constructor(obj?: Partial<TenantWithGroups>); } export default TenantWithGroups;