/* Options: Date: 2025-08-05 02:00:52 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: ExportForAddonConfigurationMessage.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/Sitefinity/packaging/export-for-packaging", "POST") class ExportForAddonConfigurationMessage implements IConvertible, IPost { List? StructureExportConfiguration; List? ContentExportConfiguration; String? ExportDirectory; ExportForAddonConfigurationMessage({this.StructureExportConfiguration,this.ContentExportConfiguration,this.ExportDirectory}); ExportForAddonConfigurationMessage.fromJson(Map json) { fromMap(json); } fromMap(Map json) { StructureExportConfiguration = JsonConverters.fromJson(json['StructureExportConfiguration'],'List',context!); ContentExportConfiguration = JsonConverters.fromJson(json['ContentExportConfiguration'],'List',context!); ExportDirectory = json['ExportDirectory']; return this; } Map toJson() => { 'StructureExportConfiguration': JsonConverters.toJson(StructureExportConfiguration,'List',context!), 'ContentExportConfiguration': JsonConverters.toJson(ContentExportConfiguration,'List',context!), 'ExportDirectory': ExportDirectory }; getTypeName() => "ExportForAddonConfigurationMessage"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.asg.com.au', types: { 'ExportForAddonConfigurationMessage': TypeInfo(TypeOf.Class, create:() => ExportForAddonConfigurationMessage()), });