/* Options: Date: 2025-12-06 07:26:31 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: SiteContentRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/SiteContent", Verbs="GET,PUT,POST,DELETE,OPTIONS") // @Route(Path="/v1/SiteContent/{Category}", Verbs="GET,PUT,POST,DELETE,OPTIONS") // @Route(Path="/v1/SiteContent/{Category}/{SortOrder}", Verbs="GET,PUT,DELETE,POST,OPTIONS") public static class SiteContentRequest implements IReturn { public String Category = null; public String SortOrder = null; public SiteContent SiteContent = null; public String getCategory() { return Category; } public SiteContentRequest setCategory(String value) { this.Category = value; return this; } public String getSortOrder() { return SortOrder; } public SiteContentRequest setSortOrder(String value) { this.SortOrder = value; return this; } public SiteContent getSiteContent() { return SiteContent; } public SiteContentRequest setSiteContent(SiteContent value) { this.SiteContent = value; return this; } private static Object responseType = SiteContent.class; public Object getResponseType() { return responseType; } } public static class SiteContent { public Integer Id = null; public String ContentHeader = null; public String ContentBody = null; public Date BeginDate = null; public Date EndDate = null; public Integer SortOrder = null; public String Category = null; public Integer getId() { return Id; } public SiteContent setId(Integer value) { this.Id = value; return this; } public String getContentHeader() { return ContentHeader; } public SiteContent setContentHeader(String value) { this.ContentHeader = value; return this; } public String getContentBody() { return ContentBody; } public SiteContent setContentBody(String value) { this.ContentBody = value; return this; } public Date getBeginDate() { return BeginDate; } public SiteContent setBeginDate(Date value) { this.BeginDate = value; return this; } public Date getEndDate() { return EndDate; } public SiteContent setEndDate(Date value) { this.EndDate = value; return this; } public Integer getSortOrder() { return SortOrder; } public SiteContent setSortOrder(Integer value) { this.SortOrder = value; return this; } public String getCategory() { return Category; } public SiteContent setCategory(String value) { this.Category = value; return this; } } }