/* Options: Date: 2025-01-08 03:18:29 Version: 8.53 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazordiffusion.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteArtifactReport.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* import com.google.gson.annotations.* import com.google.gson.reflect.* @ValidateRequest(Validator="IsAuthenticated") // @ValidateRequest(Validator="IsAdmin") open class DeleteArtifactReport : IReturnVoid, IDeleteDb { @Validate(Validator="GreaterThan(0)") open var artifactId:Int? = null } open class ArtifactReport { open var id:Long? = null @References(Type=Artifact::class) open var artifactId:Int? = null open var appUserId:Int? = null open var artifact:Artifact? = null @SerializedName("type") open var Type:ReportType? = null open var description:String? = null open var createdDate:Date? = null open var notes:String? = null open var actionedDate:Date? = null open var actionedBy:String? = null }