import * as $dara from '@darabonba/typescript'; export declare class UpdateLivePackageChannelGroupRequest extends $dara.Model { /** * @remarks * The channel group description. It can be up to 1,000 characters in length. */ description?: string; /** * @remarks * The channel group name. It can contain letters, digits, hyphens (-), and underscores (_). The name must be 1 to 200 characters in length. Format: [A-Za-z0-9_-]+ * * This parameter is required. * * @example * channel-group-1 */ groupName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }