/* Options: Date: 2024-04-27 23:39:49 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: UserPostCommentReport.* //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="/posts/{PostId}/comments/{Id}/report", Verbs="PUT") public static class UserPostCommentReport implements IReturn, IPut { public Long id = null; public Long postId = null; public FlagType flagType = null; public String reportNotes = null; public Long getId() { return id; } public UserPostCommentReport setId(Long value) { this.id = value; return this; } public Long getPostId() { return postId; } public UserPostCommentReport setPostId(Long value) { this.postId = value; return this; } public FlagType getFlagType() { return flagType; } public UserPostCommentReport setFlagType(FlagType value) { this.flagType = value; return this; } public String getReportNotes() { return reportNotes; } public UserPostCommentReport setReportNotes(String value) { this.reportNotes = value; return this; } private static Object responseType = UserPostCommentReportResponse.class; public Object getResponseType() { return responseType; } } public static class UserPostCommentReportResponse { public ResponseStatus responseStatus = null; public ResponseStatus getResponseStatus() { return responseStatus; } public UserPostCommentReportResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static enum FlagType { Violation, Spam, Abusive, Confidential, OffTopic, Other; } }