import * as $dara from '@darabonba/typescript'; export declare class GetLivePackageChannelGroupResponseBodyLivePackageChannelGroup extends $dara.Model { /** * @remarks * The time when the channel group was created. It is in the yyyy-MM-ddTHH:mm:ssZ format and displayed in UTC. * * @example * 2023-04-01T12:00:00Z */ createTime?: string; /** * @remarks * The channel group description. * * @example * Updated description of the channel group. */ description?: string; /** * @remarks * The channel group name. * * @example * channel-group-1 */ groupName?: string; /** * @remarks * The time when the channel group was last modified. It is in the yyyy-MM-ddTHH:mm:ssZ format and displayed in UTC. * * @example * 2023-04-01T12:00:00Z */ lastModified?: string; /** * @remarks * The origin domain. * * @example * example.com */ originDomain?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetLivePackageChannelGroupResponseBody extends $dara.Model { /** * @remarks * Details of the channel group. */ livePackageChannelGroup?: GetLivePackageChannelGroupResponseBodyLivePackageChannelGroup; /** * @remarks * The request ID. * * @example * req-abcdefg123456 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }