/* Options: Date: 2025-08-05 01:58:51 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: DownloadExportedArchiveConfigurationMessage.* //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="GET") public static class DownloadExportedArchiveConfigurationMessage implements IReturn { public String ArchiveName = null; public String getArchiveName() { return ArchiveName; } public DownloadExportedArchiveConfigurationMessage setArchiveName(String value) { this.ArchiveName = value; return this; } private static Object responseType = ZipFileResult.class; public Object getResponseType() { return responseType; } } public static class ZipFileResult { public HashMap Options = null; public HashMap getOptions() { return Options; } public ZipFileResult setOptions(HashMap value) { this.Options = value; return this; } } }