/* Options: Date: 2025-08-05 02:04:06 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: GetMobileFormatsTemplatesDto.* //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/templates", Verbs="GET") public static class GetMobileFormatsTemplatesDto { public String SiteId = null; public String ContentTypeId = null; public String getSiteId() { return SiteId; } public GetMobileFormatsTemplatesDto setSiteId(String value) { this.SiteId = value; return this; } public String getContentTypeId() { return ContentTypeId; } public GetMobileFormatsTemplatesDto setContentTypeId(String value) { this.ContentTypeId = value; return this; } } }