@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 397 B
TypeScript
/**
* @export
* @class TenantGroupDetail
*/
export declare class TenantGroupDetail {
/**
* Id of Group
* @type {string}
* @memberof TenantGroupDetail
*/
id?: string;
/**
* Name of Group
* @type {string}
* @memberof TenantGroupDetail
*/
name?: string;
constructor(obj?: Partial<TenantGroupDetail>);
}
export default TenantGroupDetail;