/* Options: Date: 2025-01-08 03:15:24 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CreateArtifactCommentReport.* //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 { @ValidateRequest(Validator="IsAuthenticated") public static class CreateArtifactCommentReport implements IReturnVoid, ICreateDb { public Integer artifactCommentId = null; public PostReport postReport = null; public String description = null; public Integer getArtifactCommentId() { return artifactCommentId; } public CreateArtifactCommentReport setArtifactCommentId(Integer value) { this.artifactCommentId = value; return this; } public PostReport getPostReport() { return postReport; } public CreateArtifactCommentReport setPostReport(PostReport value) { this.postReport = value; return this; } public String getDescription() { return description; } public CreateArtifactCommentReport setDescription(String value) { this.description = value; return this; } } public static enum PostReport { Offensive, Spam, Nudity, Illegal, Other; } public static class ArtifactCommentReport { public Long id = null; @References(Type=ArtifactComment.class) public Integer artifactCommentId = null; public Integer appUserId = null; public PostReport postReport = null; public String description = null; public Date createdDate = null; public Long getId() { return id; } public ArtifactCommentReport setId(Long value) { this.id = value; return this; } public Integer getArtifactCommentId() { return artifactCommentId; } public ArtifactCommentReport setArtifactCommentId(Integer value) { this.artifactCommentId = value; return this; } public Integer getAppUserId() { return appUserId; } public ArtifactCommentReport setAppUserId(Integer value) { this.appUserId = value; return this; } public PostReport getPostReport() { return postReport; } public ArtifactCommentReport setPostReport(PostReport value) { this.postReport = value; return this; } public String getDescription() { return description; } public ArtifactCommentReport setDescription(String value) { this.description = value; return this; } public Date getCreatedDate() { return createdDate; } public ArtifactCommentReport setCreatedDate(Date value) { this.createdDate = value; return this; } } }