/* Options: Date: 2025-08-05 02:10:24 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: ToggleMobileFormatsContentTypesDto.* //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/mobile-formats/content-types/toggle", Verbs="PUT") public static class ToggleMobileFormatsContentTypesDto { public String SiteId = null; public ArrayList MobileFormatContentTypes = null; public String getSiteId() { return SiteId; } public ToggleMobileFormatsContentTypesDto setSiteId(String value) { this.SiteId = value; return this; } public ArrayList getMobileFormatContentTypes() { return MobileFormatContentTypes; } public ToggleMobileFormatsContentTypesDto setMobileFormatContentTypes(ArrayList value) { this.MobileFormatContentTypes = value; return this; } } public static class MobileFormatContentTypeDto { public String ContentTypeDisplayName = null; public String ContentTypeName = null; public String ContentTypeFullname = null; public Boolean Active = null; public String getContentTypeDisplayName() { return ContentTypeDisplayName; } public MobileFormatContentTypeDto setContentTypeDisplayName(String value) { this.ContentTypeDisplayName = value; return this; } public String getContentTypeName() { return ContentTypeName; } public MobileFormatContentTypeDto setContentTypeName(String value) { this.ContentTypeName = value; return this; } public String getContentTypeFullname() { return ContentTypeFullname; } public MobileFormatContentTypeDto setContentTypeFullname(String value) { this.ContentTypeFullname = value; return this; } public Boolean isActive() { return Active; } public MobileFormatContentTypeDto setActive(Boolean value) { this.Active = value; return this; } } }