// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class QueryInstanceGaapCostRequest extends $dara.Model { /** * @remarks * This parameter is required. * * @example * 2020-03 */ billingCycle?: string; /** * @example * 1 */ pageNum?: number; /** * @example * 20 */ pageSize?: number; /** * @example * rds */ productCode?: string; /** * @example * rds */ productType?: string; /** * @example * PayAsYouGo */ subscriptionType?: string; static names(): { [key: string]: string } { return { billingCycle: 'BillingCycle', pageNum: 'PageNum', pageSize: 'PageSize', productCode: 'ProductCode', productType: 'ProductType', subscriptionType: 'SubscriptionType', }; } static types(): { [key: string]: any } { return { billingCycle: 'string', pageNum: 'number', pageSize: 'number', productCode: 'string', productType: 'string', subscriptionType: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }