/* Options: Date: 2025-08-05 02:45:57 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: DECDisableContentAnalysisDto.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/sitefinity/data-intelligence/disable-content-analysis", "POST") class DECDisableContentAnalysisDto implements IReturn, IConvertible, IPost { String? DataCenterApiKey; List? SiteNames; DECDisableContentAnalysisDto({this.DataCenterApiKey,this.SiteNames}); DECDisableContentAnalysisDto.fromJson(Map json) { fromMap(json); } fromMap(Map json) { DataCenterApiKey = json['DataCenterApiKey']; SiteNames = JsonConverters.fromJson(json['SiteNames'],'List',context!); return this; } Map toJson() => { 'DataCenterApiKey': DataCenterApiKey, 'SiteNames': JsonConverters.toJson(SiteNames,'List',context!) }; createResponse() => DECDisableContentAnalysisDto(); getResponseTypeName() => "DECDisableContentAnalysisDto"; getTypeName() => "DECDisableContentAnalysisDto"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'DECDisableContentAnalysisDto': TypeInfo(TypeOf.Class, create:() => DECDisableContentAnalysisDto()), });