// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateDiskResponseBody extends $dara.Model { /** * @remarks * The disk ID. * * @example * d-bp131n0q38u3a4zi**** */ diskId?: string; /** * @remarks * The order ID. * * > The order ID is returned only when you create a subscription disk. * * @example * 20413515388**** */ orderId?: string; /** * @remarks * The request ID. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3**** */ requestId?: string; static names(): { [key: string]: string } { return { diskId: 'DiskId', orderId: 'OrderId', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { diskId: 'string', orderId: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }