// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribePricingModuleRequest extends $dara.Model { ownerId?: number; /** * @remarks * The service code. You can query the service code by calling the **QueryProductList** operation. * * This parameter is required. * * @example * rds */ productCode?: string; /** * @remarks * The type of the service. You can query the service type by calling the **QueryProductList** operation. * * @example * rds */ productType?: string; /** * @remarks * The billing method. Valid values: * * * Subscription: subscription * * PayAsYouGo: pay-as-you-go * * This parameter is required. * * @example * Subscription */ subscriptionType?: string; static names(): { [key: string]: string } { return { ownerId: 'OwnerId', productCode: 'ProductCode', productType: 'ProductType', subscriptionType: 'SubscriptionType', }; } static types(): { [key: string]: any } { return { ownerId: 'number', productCode: 'string', productType: 'string', subscriptionType: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }