/* Options: Date: 2024-12-22 12:01:21 Version: 8.51 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: ActionPostCommentReport.* //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="/posts/{PostId}/comments/{PostCommentId}/report/{Id}", Verbs="POST") public static class ActionPostCommentReport implements IReturnVoid, IPost { public Long id = null; public Long postCommentId = null; public Long postId = null; public ReportAction reportAction = null; public Long getId() { return id; } public ActionPostCommentReport setId(Long value) { this.id = value; return this; } public Long getPostCommentId() { return postCommentId; } public ActionPostCommentReport setPostCommentId(Long value) { this.postCommentId = value; return this; } public Long getPostId() { return postId; } public ActionPostCommentReport setPostId(Long value) { this.postId = value; return this; } public ReportAction getReportAction() { return reportAction; } public ActionPostCommentReport setReportAction(ReportAction value) { this.reportAction = value; return this; } } public static enum ReportAction { Dismiss, Delete; } }