// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SetContentAnalyzeConfigRequest extends $dara.Model { /** * @example * true */ auto?: boolean; /** * @example * TEXT,FACE */ saveType?: string; /** * @example * S00000101-100070 */ templateId?: string; static names(): { [key: string]: string } { return { auto: 'Auto', saveType: 'SaveType', templateId: 'TemplateId', }; } static types(): { [key: string]: any } { return { auto: 'boolean', saveType: 'string', templateId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }