/* Options: Date: 2025-01-08 03:21:50 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: DeleteCreative.* //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 DeleteCreative implements IReturnVoid, IDeleteDb { public Integer id = null; public Integer getId() { return id; } public DeleteCreative setId(Integer value) { this.id = value; return this; } } public static class Creative extends AuditBase { public Integer id = null; public String userPrompt = null; public String prompt = null; public Integer images = null; public Integer width = null; public Integer height = null; public Integer steps = null; public Integer curatedArtifactId = null; public Integer primaryArtifactId = null; public ArrayList artistNames = new ArrayList(); public ArrayList modifierNames = new ArrayList(); public ArrayList artists = new ArrayList(); public ArrayList modifiers = new ArrayList(); public ArrayList artifacts = new ArrayList(); public String error = null; public Integer ownerId = null; public String ownerRef = null; public String key = null; public Boolean curated = null; public Integer rating = null; @SerializedName("private") public Boolean Private = null; public Integer score = null; public Integer rank = null; public String refId = null; public String requestId = null; public String engineId = null; public Integer getId() { return id; } public Creative setId(Integer value) { this.id = value; return this; } public String getUserPrompt() { return userPrompt; } public Creative setUserPrompt(String value) { this.userPrompt = value; return this; } public String getPrompt() { return prompt; } public Creative setPrompt(String value) { this.prompt = value; return this; } public Integer getImages() { return images; } public Creative setImages(Integer value) { this.images = value; return this; } public Integer getWidth() { return width; } public Creative setWidth(Integer value) { this.width = value; return this; } public Integer getHeight() { return height; } public Creative setHeight(Integer value) { this.height = value; return this; } public Integer getSteps() { return steps; } public Creative setSteps(Integer value) { this.steps = value; return this; } public Integer getCuratedArtifactId() { return curatedArtifactId; } public Creative setCuratedArtifactId(Integer value) { this.curatedArtifactId = value; return this; } public Integer getPrimaryArtifactId() { return primaryArtifactId; } public Creative setPrimaryArtifactId(Integer value) { this.primaryArtifactId = value; return this; } public ArrayList getArtistNames() { return artistNames; } public Creative setArtistNames(ArrayList value) { this.artistNames = value; return this; } public ArrayList getModifierNames() { return modifierNames; } public Creative setModifierNames(ArrayList value) { this.modifierNames = value; return this; } public ArrayList getArtists() { return artists; } public Creative setArtists(ArrayList value) { this.artists = value; return this; } public ArrayList getModifiers() { return modifiers; } public Creative setModifiers(ArrayList value) { this.modifiers = value; return this; } public ArrayList getArtifacts() { return artifacts; } public Creative setArtifacts(ArrayList value) { this.artifacts = value; return this; } public String getError() { return error; } public Creative setError(String value) { this.error = value; return this; } public Integer getOwnerId() { return ownerId; } public Creative setOwnerId(Integer value) { this.ownerId = value; return this; } public String getOwnerRef() { return ownerRef; } public Creative setOwnerRef(String value) { this.ownerRef = value; return this; } public String getKey() { return key; } public Creative setKey(String value) { this.key = value; return this; } public Boolean isCurated() { return curated; } public Creative setCurated(Boolean value) { this.curated = value; return this; } public Integer getRating() { return rating; } public Creative setRating(Integer value) { this.rating = value; return this; } public Boolean isPrivate() { return Private; } public Creative setPrivate(Boolean value) { this.Private = value; return this; } public Integer getScore() { return score; } public Creative setScore(Integer value) { this.score = value; return this; } public Integer getRank() { return rank; } public Creative setRank(Integer value) { this.rank = value; return this; } public String getRefId() { return refId; } public Creative setRefId(String value) { this.refId = value; return this; } public String getRequestId() { return requestId; } public Creative setRequestId(String value) { this.requestId = value; return this; } public String getEngineId() { return engineId; } public Creative setEngineId(String value) { this.engineId = value; return this; } } }