import * as $dara from '@darabonba/typescript'; export declare 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; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }