import * as $dara from '@darabonba/typescript'; export declare class QueryCashCouponsResponseBodyDataCashCoupon extends $dara.Model { /** * @remarks * The service to which the voucher is applicable. * * @example * All Alibaba Cloud services */ applicableProducts?: string; /** * @remarks * The scenario to which the voucher is applicable. * * @example * Pay for the pay-as-you-go bills of Alibaba Cloud services or purchase an instance of an Alibaba Cloud service */ applicableScenarios?: string; /** * @remarks * The remaining quota of the voucher. * * @example * 100.00 */ balance?: string; /** * @remarks * The ID of the voucher. * * @example * 34534253254325 */ cashCouponId?: number; /** * @remarks * The code of the voucher. * * @example * Q-b1485def8f04a */ cashCouponNo?: string; /** * @remarks * The description of the voucher. * * @example * This voucher is used for testing product function */ description?: string; /** * @remarks * The time when the voucher took effect. * * @example * 2018-08-02T15:15:50Z */ effectiveTime?: string; /** * @remarks * The time when the voucher expired. * * @example * 2019-01-29T15:15:50Z */ expiryTime?: string; /** * @remarks * The time when the voucher was released. * * @example * 2018-08-02T15:15:50Z */ grantedTime?: string; /** * @remarks * The denomination of the voucher. * * @example * 100.00 */ nominalValue?: string; /** * @remarks * The state of the voucher. Valid values: * * * Available: The voucher is valid. * * Expired: The voucher has expired. * * Cancelled: The voucher is canceled. * * @example * Available */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryCashCouponsResponseBodyData extends $dara.Model { cashCoupon?: QueryCashCouponsResponseBodyDataCashCoupon[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryCashCouponsResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: QueryCashCouponsResponseBodyData; /** * @remarks * The message returned. * * @example * Successful */ message?: string; /** * @remarks * The ID of the request. * * @example * 147B566E-DB4C-4E43-BDBB-5DB1D9D268DB */ 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; }); }