/* Options: Date: 2025-08-05 02:06:59 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: ThreadUpdateRequest.* //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="/comments-api/threads", Verbs="PUT") public static class ThreadUpdateRequest implements IReturn { public String Key = null; public Boolean IsClosed = null; public String getKey() { return Key; } public ThreadUpdateRequest setKey(String value) { this.Key = value; return this; } public Boolean getIsClosed() { return IsClosed; } public ThreadUpdateRequest setIsClosed(Boolean value) { this.IsClosed = value; return this; } private static Object responseType = ThreadResponse.class; public Object getResponseType() { return responseType; } } public static class ThreadResponse { public String Key = null; public String Type = null; public Integer CommentsCount = null; public String Title = null; public String Language = null; public Boolean IsClosed = null; public String GroupKey = null; public String ItemUrl = null; public String DataSource = null; public BigDecimal AverageRating = null; public String getKey() { return Key; } public ThreadResponse setKey(String value) { this.Key = value; return this; } public String getType() { return Type; } public ThreadResponse setType(String value) { this.Type = value; return this; } public Integer getCommentsCount() { return CommentsCount; } public ThreadResponse setCommentsCount(Integer value) { this.CommentsCount = value; return this; } public String getTitle() { return Title; } public ThreadResponse setTitle(String value) { this.Title = value; return this; } public String getLanguage() { return Language; } public ThreadResponse setLanguage(String value) { this.Language = value; return this; } public Boolean getIsClosed() { return IsClosed; } public ThreadResponse setIsClosed(Boolean value) { this.IsClosed = value; return this; } public String getGroupKey() { return GroupKey; } public ThreadResponse setGroupKey(String value) { this.GroupKey = value; return this; } public String getItemUrl() { return ItemUrl; } public ThreadResponse setItemUrl(String value) { this.ItemUrl = value; return this; } public String getDataSource() { return DataSource; } public ThreadResponse setDataSource(String value) { this.DataSource = value; return this; } public BigDecimal getAverageRating() { return AverageRating; } public ThreadResponse setAverageRating(BigDecimal value) { this.AverageRating = value; return this; } } }