import * as $dara from '@darabonba/typescript'; import { VodPackagingConfiguration } from "./VodPackagingConfiguration"; export declare class ListVodPackagingConfigurationsResponseBody extends $dara.Model { /** * @remarks * The packaging configurations. */ packagingConfigurations?: VodPackagingConfiguration[]; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of entries per page. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The sorting order of the packaging configurations based on the time when they were created. Valid values: * * * desc: descending order. * * asc: ascending order. * * @example * desc */ sortBy?: string; /** * @remarks * The total number of entries returned. * * @example * 5 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }