// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; import { CreateModelProxyInput } from "./CreateModelProxyInput"; export class CreateModelProxyRequest extends $dara.Model { /** * @remarks * The configuration for the Model Proxy. */ body?: CreateModelProxyInput; static names(): { [key: string]: string } { return { body: 'body', }; } static types(): { [key: string]: any } { return { body: CreateModelProxyInput, }; } validate() { if(this.body && typeof (this.body as any).validate === 'function') { (this.body as any).validate(); } super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }