import * as $dara from '@darabonba/typescript'; export declare class QueryPrepaidCardsRequest extends $dara.Model { /** * @remarks * Specifies whether the prepaid card takes effect. Valid values: * * * true * * false * * @example * true */ effectiveOrNot?: boolean; /** * @remarks * The end of the expiration time of prepaid cards to query. The value must be in the yyyy-MM-ddTHH:mm:ssZ format. * * @example * 2018-08-01T00:00:00Z */ expiryTimeEnd?: string; /** * @remarks * The start of the expiration time of prepaid cards to query. The value must be in the yyyy-MM-ddTHH:mm:ssZ format. * * @example * 2018-08-01T00:00:00Z */ expiryTimeStart?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }