// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateLiveRecordTemplateResponseBody extends $dara.Model { /** * @remarks * The request ID. * * @example * 0622C702-41BE-467E-AF2E-883D4517962E */ requestId?: string; /** * @remarks * The template ID. * * @example * ****96e8864746a0b6f3**** */ templateId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', templateId: 'TemplateId', }; } static types(): { [key: string]: any } { return { requestId: 'string', templateId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }