/* Options: Date: 2025-01-08 03:04:00 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: DeleteAlbum.* //ExcludeTypes: //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.*; public class dtos { @ValidateRequest(Validator="IsAuthenticated") public static class DeleteAlbum implements IReturnVoid, IDeleteDb { public Integer id = null; public Integer getId() { return id; } public DeleteAlbum setId(Integer value) { this.id = value; return this; } } public static class Album extends AuditBase { public Integer id = null; public String name = null; public String description = null; public String slug = null; public ArrayList tags = new ArrayList(); public String refId = null; public Integer ownerId = null; public String ownerRef = null; public Integer primaryArtifactId = null; @SerializedName("private") public Boolean Private = null; public Integer rating = null; public Integer likesCount = null; public Integer downloadsCount = null; public Integer searchCount = null; public Integer score = null; public Integer rank = null; public Integer prefColumns = null; public ArrayList artifacts = new ArrayList(); public Integer getId() { return id; } public Album setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public Album setName(String value) { this.name = value; return this; } public String getDescription() { return description; } public Album setDescription(String value) { this.description = value; return this; } public String getSlug() { return slug; } public Album setSlug(String value) { this.slug = value; return this; } public ArrayList getTags() { return tags; } public Album setTags(ArrayList value) { this.tags = value; return this; } public String getRefId() { return refId; } public Album setRefId(String value) { this.refId = value; return this; } public Integer getOwnerId() { return ownerId; } public Album setOwnerId(Integer value) { this.ownerId = value; return this; } public String getOwnerRef() { return ownerRef; } public Album setOwnerRef(String value) { this.ownerRef = value; return this; } public Integer getPrimaryArtifactId() { return primaryArtifactId; } public Album setPrimaryArtifactId(Integer value) { this.primaryArtifactId = value; return this; } public Boolean isPrivate() { return Private; } public Album setPrivate(Boolean value) { this.Private = value; return this; } public Integer getRating() { return rating; } public Album setRating(Integer value) { this.rating = value; return this; } public Integer getLikesCount() { return likesCount; } public Album setLikesCount(Integer value) { this.likesCount = value; return this; } public Integer getDownloadsCount() { return downloadsCount; } public Album setDownloadsCount(Integer value) { this.downloadsCount = value; return this; } public Integer getSearchCount() { return searchCount; } public Album setSearchCount(Integer value) { this.searchCount = value; return this; } public Integer getScore() { return score; } public Album setScore(Integer value) { this.score = value; return this; } public Integer getRank() { return rank; } public Album setRank(Integer value) { this.rank = value; return this; } public Integer getPrefColumns() { return prefColumns; } public Album setPrefColumns(Integer value) { this.prefColumns = value; return this; } public ArrayList getArtifacts() { return artifacts; } public Album setArtifacts(ArrayList value) { this.artifacts = value; return this; } } }