import * as $dara from '@darabonba/typescript'; export declare class QueryBillOverviewRequest extends $dara.Model { /** * @remarks * The ID of the member. If you specify a value for this parameter, you can query the bills of the specified member. If you leave this parameter empty, the bills of the current account are queried by default. * * @example * 1234 */ billOwnerId?: number; /** * @remarks * The billing cycle, in the YYYY-MM format. * * This parameter is required. * * @example * 2018-07 */ billingCycle?: string; /** * @remarks * The code of the service. * * @example * rds */ productCode?: string; /** * @remarks * The type of the service. * * @example * rds */ productType?: string; /** * @remarks * The billing method. Valid values: * * * Subscription: the subscription billing method * * PayAsYouGo: the pay-as-you-go billing method * * @example * Subscription */ subscriptionType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }