/* Options: Date: 2024-05-01 22:23:03 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: DeletePostComment.* //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}", Verbs="DELETE") public static class DeletePostComment implements IReturn, IDelete { public Long id = null; public Long postId = null; public Long getId() { return id; } public DeletePostComment setId(Long value) { this.id = value; return this; } public Long getPostId() { return postId; } public DeletePostComment setPostId(Long value) { this.postId = value; return this; } private static Object responseType = DeletePostCommentResponse.class; public Object getResponseType() { return responseType; } } public static class DeletePostCommentResponse { public Long id = null; public Long postId = null; public ResponseStatus responseStatus = null; public Long getId() { return id; } public DeletePostCommentResponse setId(Long value) { this.id = value; return this; } public Long getPostId() { return postId; } public DeletePostCommentResponse setPostId(Long value) { this.postId = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public DeletePostCommentResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } }