/* Options: Date: 2025-08-05 01:59:44 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DECMonitorContentAnalysisDto.* //ExcludeTypes: //DefaultImports: */ // @Route("/sitefinity/data-intelligence/enable-content-analysis", "POST") export class DECEnableContentAnalysisDto implements IReturn { public Progress: number; public DataCenterApiKey: string; public SiteNames: string[]; public StatusMessage: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DECEnableContentAnalysisDto'; } public getMethod() { return 'POST'; } public createResponse() { return new DECEnableContentAnalysisDto(); } } // @Route("/sitefinity/data-intelligence/content-analysis-progress", "GET") export class DECMonitorContentAnalysisDto implements IReturn { public DataCenterProgress: DECEnableContentAnalysisDto[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DECMonitorContentAnalysisDto'; } public getMethod() { return 'GET'; } public createResponse() { return new DECMonitorContentAnalysisDto(); } }