// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { billOwnerId: 'BillOwnerId', billingCycle: 'BillingCycle', productCode: 'ProductCode', productType: 'ProductType', subscriptionType: 'SubscriptionType', }; } static types(): { [key: string]: any } { return { billOwnerId: 'number', billingCycle: 'string', productCode: 'string', productType: 'string', subscriptionType: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }