/* Options: Date: 2025-08-05 02:43:25 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DECMonitorContentAnalysisDto.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/sitefinity/data-intelligence/enable-content-analysis", "POST") class DECEnableContentAnalysisDto implements IReturn, IConvertible, IPost { int? Progress; String? DataCenterApiKey; List? SiteNames; String? StatusMessage; DECEnableContentAnalysisDto({this.Progress,this.DataCenterApiKey,this.SiteNames,this.StatusMessage}); DECEnableContentAnalysisDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Progress = json['Progress']; DataCenterApiKey = json['DataCenterApiKey']; SiteNames = JsonConverters.fromJson(json['SiteNames'],'List',context!); StatusMessage = json['StatusMessage']; return this; } Map toJson() => { 'Progress': Progress, 'DataCenterApiKey': DataCenterApiKey, 'SiteNames': JsonConverters.toJson(SiteNames,'List',context!), 'StatusMessage': StatusMessage }; createResponse() => DECEnableContentAnalysisDto(); getResponseTypeName() => "DECEnableContentAnalysisDto"; getTypeName() => "DECEnableContentAnalysisDto"; TypeContext? context = _ctx; } // @Route("/sitefinity/data-intelligence/content-analysis-progress", "GET") class DECMonitorContentAnalysisDto implements IReturn, IConvertible, IGet { List? DataCenterProgress; DECMonitorContentAnalysisDto({this.DataCenterProgress}); DECMonitorContentAnalysisDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DataCenterProgress = JsonConverters.fromJson(json['DataCenterProgress'],'List',context!); return this; } Map toJson() => { 'DataCenterProgress': JsonConverters.toJson(DataCenterProgress,'List',context!) }; createResponse() => DECMonitorContentAnalysisDto(); getResponseTypeName() => "DECMonitorContentAnalysisDto"; getTypeName() => "DECMonitorContentAnalysisDto"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DECEnableContentAnalysisDto': TypeInfo(TypeOf.Class, create:() => DECEnableContentAnalysisDto()), 'DECMonitorContentAnalysisDto': TypeInfo(TypeOf.Class, create:() => DECMonitorContentAnalysisDto()), 'List': TypeInfo(TypeOf.Class, create:() => []), });