/* Options: Date: 2025-01-08 03:15:37 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: DeleteArtifactReport.* //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") // @ValidateRequest(Validator="IsAdmin") public static class DeleteArtifactReport implements IReturnVoid, IDeleteDb { @Validate(Validator="GreaterThan(0)") public Integer artifactId = null; public Integer getArtifactId() { return artifactId; } public DeleteArtifactReport setArtifactId(Integer value) { this.artifactId = value; return this; } } public static class ArtifactReport { public Long id = null; @References(Type=Artifact.class) public Integer artifactId = null; public Integer appUserId = null; public Artifact artifact = null; public ReportType type = null; public String description = null; public Date createdDate = null; public String notes = null; public Date actionedDate = null; public String actionedBy = null; public Long getId() { return id; } public ArtifactReport setId(Long value) { this.id = value; return this; } public Integer getArtifactId() { return artifactId; } public ArtifactReport setArtifactId(Integer value) { this.artifactId = value; return this; } public Integer getAppUserId() { return appUserId; } public ArtifactReport setAppUserId(Integer value) { this.appUserId = value; return this; } public Artifact getArtifact() { return artifact; } public ArtifactReport setArtifact(Artifact value) { this.artifact = value; return this; } public ReportType getType() { return type; } public ArtifactReport setType(ReportType value) { this.type = value; return this; } public String getDescription() { return description; } public ArtifactReport setDescription(String value) { this.description = value; return this; } public Date getCreatedDate() { return createdDate; } public ArtifactReport setCreatedDate(Date value) { this.createdDate = value; return this; } public String getNotes() { return notes; } public ArtifactReport setNotes(String value) { this.notes = value; return this; } public Date getActionedDate() { return actionedDate; } public ArtifactReport setActionedDate(Date value) { this.actionedDate = value; return this; } public String getActionedBy() { return actionedBy; } public ArtifactReport setActionedBy(String value) { this.actionedBy = value; return this; } } }