/* Options: Date: 2025-08-05 02:22:26 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: MobileFormatDefinitionInfoDto.* //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/info", Verbs="PUT") public static class MobileFormatDefinitionInfoDto { public String SiteId = null; public String MobileFormatName = null; public Boolean Active = null; public String MobileDefinitionSettingName = null; public String MobileDefinitionTitle = null; public String getSiteId() { return SiteId; } public MobileFormatDefinitionInfoDto setSiteId(String value) { this.SiteId = value; return this; } public String getMobileFormatName() { return MobileFormatName; } public MobileFormatDefinitionInfoDto setMobileFormatName(String value) { this.MobileFormatName = value; return this; } public Boolean isActive() { return Active; } public MobileFormatDefinitionInfoDto setActive(Boolean value) { this.Active = value; return this; } public String getMobileDefinitionSettingName() { return MobileDefinitionSettingName; } public MobileFormatDefinitionInfoDto setMobileDefinitionSettingName(String value) { this.MobileDefinitionSettingName = value; return this; } public String getMobileDefinitionTitle() { return MobileDefinitionTitle; } public MobileFormatDefinitionInfoDto setMobileDefinitionTitle(String value) { this.MobileDefinitionTitle = value; return this; } } }