import * as $dara from '@darabonba/typescript'; export declare class DescribeModelsRequestTag extends $dara.Model { /** * @remarks * The tag key. * * @example * key */ key?: string; /** * @remarks * The tag value. * * @example * value */ value?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeModelsRequest extends $dara.Model { /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * 30e792398d6c4569b04c0e53a3494381 */ groupId?: string; /** * @remarks * The ID of the model. * * @example * 123 */ modelId?: string; /** * @remarks * The name of the model. * * @example * Test */ modelName?: string; /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The tag of objects that match the rule. You can specify multiple tags. */ tag?: DescribeModelsRequestTag[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }