import * as $dara from '@darabonba/typescript'; export declare class DescribeSavingsPlansUsageDetailResponseBodyDataItems extends $dara.Model { /** * @remarks * The currency. * * @example * CNY */ currency?: string; /** * @remarks * The used amount of the savings plan. * * @example * 3.94 */ deductValue?: number; /** * @remarks * The end time. * * @example * 2021-08-09 00:00:00 */ endPeriod?: string; /** * @remarks * The ID of the instance. * * @example * spn-a1fhs54c243hP22 */ instanceId?: string; /** * @remarks * The total amount of the savings plan. * * @example * 29.84 */ poolValue?: number; /** * @remarks * The pay-as-you-go cost. * * @example * 4.2 */ postpaidCost?: number; /** * @remarks * The amount that is saved. * * @example * 0.08 */ savedCost?: number; /** * @remarks * The start time. * * @example * 2021-08-01 00:00:00 */ startPeriod?: string; /** * @remarks * The status of the instance. * * A value of -1 indicates that the payment is overdue. A value of 1 indicates that the instance is active. * * @example * -1 */ status?: string; /** * @remarks * The type of the savings plan. Valid values: universal and ECS compute. */ type?: string; /** * @remarks * The usage. * * @example * 0.9 */ usagePercentage?: number; /** * @remarks * The ID of the account. * * @example * 123745698925000 */ userId?: number; /** * @remarks * The username of the account. * * @example * test13@test.aliyun.com */ userName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeSavingsPlansUsageDetailResponseBodyData extends $dara.Model { /** * @remarks * The data entries. */ items?: DescribeSavingsPlansUsageDetailResponseBodyDataItems[]; /** * @remarks * The token of the next page. * * @example * eyJwYWdlTnVtIjoyLCJwYWdlU2ldhsSI6MTB9 */ nextToken?: string; /** * @remarks * The total number of entries. * * @example * 1000 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeSavingsPlansUsageDetailResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The return data. */ data?: DescribeSavingsPlansUsageDetailResponseBodyData; /** * @remarks * The message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * 79EE7556-0CFD-44EB-9CD6-B3B526E3A85F */ requestId?: string; /** * @remarks * Indicates whether the operation was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }