/* Options: Date: 2025-08-05 01:58:51 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: CommentsCountGetRequest.* //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/comments/count", Verbs="GET") public static class CommentsCountGetRequest implements IReturn> { public ArrayList ThreadKey = null; public ArrayList Status = null; public ArrayList getThreadKey() { return ThreadKey; } public CommentsCountGetRequest setThreadKey(ArrayList value) { this.ThreadKey = value; return this; } public ArrayList getStatus() { return Status; } public CommentsCountGetRequest setStatus(ArrayList value) { this.Status = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } public static class CollectionResponse { public Integer TotalCount = null; public ArrayList Items = null; public Integer getTotalCount() { return TotalCount; } public CollectionResponse setTotalCount(Integer value) { this.TotalCount = value; return this; } public ArrayList getItems() { return Items; } public CollectionResponse setItems(ArrayList value) { this.Items = value; return this; } } }