/* Options: Date: 2025-01-08 03:09:29 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: GetArtifactUserData.* //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 GetArtifactUserData implements IReturn, IGet { public Integer artifactId = null; public Integer getArtifactId() { return artifactId; } public GetArtifactUserData setArtifactId(Integer value) { this.artifactId = value; return this; } private static Object responseType = GetArtifactUserDataResponse.class; public Object getResponseType() { return responseType; } } public static class GetArtifactUserDataResponse { public Integer artifactId = null; public Boolean liked = null; public ArrayList upVoted = new ArrayList(); public ArrayList downVoted = new ArrayList(); public Integer getArtifactId() { return artifactId; } public GetArtifactUserDataResponse setArtifactId(Integer value) { this.artifactId = value; return this; } public Boolean isLiked() { return liked; } public GetArtifactUserDataResponse setLiked(Boolean value) { this.liked = value; return this; } public ArrayList getUpVoted() { return upVoted; } public GetArtifactUserDataResponse setUpVoted(ArrayList value) { this.upVoted = value; return this; } public ArrayList getDownVoted() { return downVoted; } public GetArtifactUserDataResponse setDownVoted(ArrayList value) { this.downVoted = value; return this; } } }