/* Options: Date: 2024-05-03 07:57:42 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetUserPostCommentVotes.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/user/comments/votes") public static class GetUserPostCommentVotes implements IReturn, IGet { public Long postId = null; public Long getPostId() { return postId; } public GetUserPostCommentVotes setPostId(Long value) { this.postId = value; return this; } private static Object responseType = GetUserPostCommentVotesResponse.class; public Object getResponseType() { return responseType; } } public static class GetUserPostCommentVotesResponse { public Long postId = null; public ArrayList upVotedCommentIds = null; public ArrayList downVotedCommentIds = null; public Long getPostId() { return postId; } public GetUserPostCommentVotesResponse setPostId(Long value) { this.postId = value; return this; } public ArrayList getUpVotedCommentIds() { return upVotedCommentIds; } public GetUserPostCommentVotesResponse setUpVotedCommentIds(ArrayList value) { this.upVotedCommentIds = value; return this; } public ArrayList getDownVotedCommentIds() { return downVotedCommentIds; } public GetUserPostCommentVotesResponse setDownVotedCommentIds(ArrayList value) { this.downVotedCommentIds = value; return this; } } }