// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateInstanceResponseBody extends $dara.Model { /** * @remarks * The instance ID. * * @example * i-bp67acfmxazb4p**** */ instanceId?: string; /** * @remarks * The order ID. This parameter is returned only if `InstanceChargeType` is set to PrePaid. * * @example * 1234567890 */ orderId?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3**** */ requestId?: string; /** * @remarks * The transaction price. * * @example * 0.165 */ tradePrice?: number; static names(): { [key: string]: string } { return { instanceId: 'InstanceId', orderId: 'OrderId', requestId: 'RequestId', tradePrice: 'TradePrice', }; } static types(): { [key: string]: any } { return { instanceId: 'string', orderId: 'string', requestId: 'string', tradePrice: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }