/* Options: Date: 2025-08-05 01:53:42 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.asg.com.au/RestApi //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ExportForArchiveConfigurationMessage.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Sitefinity/packaging/archive", Verbs="POST") public static class ExportForArchiveConfigurationMessage { public ArrayList StructureExportConfiguration = null; public ArrayList ContentExportConfiguration = null; public ArrayList getStructureExportConfiguration() { return StructureExportConfiguration; } public ExportForArchiveConfigurationMessage setStructureExportConfiguration(ArrayList value) { this.StructureExportConfiguration = value; return this; } public ArrayList getContentExportConfiguration() { return ContentExportConfiguration; } public ExportForArchiveConfigurationMessage setContentExportConfiguration(ArrayList value) { this.ContentExportConfiguration = value; return this; } } }