import * as $dara from '@darabonba/typescript'; export declare class CreateVodPackagingGroupRequest extends $dara.Model { /** * @remarks * The packaging group description. * * @example * vod hls packaging */ description?: string; /** * @remarks * The name of the packaging group. The name must be unique in an account and can be up to 128 characters in length. Letters, digits, underscores (_), and hyphens (-) are supported. * * @example * vod_hls */ groupName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }