// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; import { CreateCredentialInput } from "./CreateCredentialInput"; export class CreateCredentialRequest extends $dara.Model { /** * @remarks * The parameters for creating a credential. */ body?: CreateCredentialInput; static names(): { [key: string]: string } { return { body: 'body', }; } static types(): { [key: string]: any } { return { body: CreateCredentialInput, }; } 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); } }