import * as $dara from '@darabonba/typescript'; export declare class QueryPriceEntityListResponseBodyDataPriceEntityInfoListPriceFactorList extends $dara.Model { /** * @remarks * The code of the factor. * * @example * vm_region_no */ priceFactorCode?: string; /** * @remarks * The name of the factor. * * @example * Region */ priceFactorName?: string; /** * @remarks * The values of the factor. */ priceFactorValueList?: string[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryPriceEntityListResponseBodyDataPriceEntityInfoList extends $dara.Model { /** * @remarks * The code of the billable item. * * @example * instance_type */ priceEntityCode?: string; /** * @remarks * The name of the billable item. * * @example * Elastic Compute Service (ECS) instance */ priceEntityName?: string; /** * @remarks * The factors of the billable item. */ priceFactorList?: QueryPriceEntityListResponseBodyDataPriceEntityInfoListPriceFactorList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryPriceEntityListResponseBodyData extends $dara.Model { /** * @remarks * The information about the billable items. */ priceEntityInfoList?: QueryPriceEntityListResponseBodyDataPriceEntityInfoList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryPriceEntityListResponseBody extends $dara.Model { /** * @remarks * The HTTP status code. * * @example * Success */ code?: string; /** * @remarks * The data that is returned. */ data?: QueryPriceEntityListResponseBodyData; /** * @remarks * The message that is returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * 79EE7556-0CFD-44EB-9CD6-B3B526E3A85F */ requestId?: string; /** * @remarks * Indicates whether the request is successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }