/* Options: Date: 2025-04-27 02:57:07 Version: 8.71 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: UpdateApiModel.* //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 { public static class UpdateApiModel implements IReturn, IPatchDb { public String name = null; public String website = null; public ArrayList tags = null; public String latest = null; public String description = null; public String icon = null; public String getName() { return name; } public UpdateApiModel setName(String value) { this.name = value; return this; } public String getWebsite() { return website; } public UpdateApiModel setWebsite(String value) { this.website = value; return this; } public ArrayList getTags() { return tags; } public UpdateApiModel setTags(ArrayList value) { this.tags = value; return this; } public String getLatest() { return latest; } public UpdateApiModel setLatest(String value) { this.latest = value; return this; } public String getDescription() { return description; } public UpdateApiModel setDescription(String value) { this.description = value; return this; } public String getIcon() { return icon; } public UpdateApiModel setIcon(String value) { this.icon = value; return this; } private static Object responseType = IdResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class IdResponse { @DataMember(Order=1) public String id = null; @DataMember(Order=2) public ResponseStatus responseStatus = null; public String getId() { return id; } public IdResponse setId(String value) { this.id = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public IdResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static class AiModel { public Integer id = null; public String name = null; public ArrayList tags = new ArrayList(); public String latest = null; public String website = null; public String description = null; public String icon = null; public Integer getId() { return id; } public AiModel setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public AiModel setName(String value) { this.name = value; return this; } public ArrayList getTags() { return tags; } public AiModel setTags(ArrayList value) { this.tags = value; return this; } public String getLatest() { return latest; } public AiModel setLatest(String value) { this.latest = value; return this; } public String getWebsite() { return website; } public AiModel setWebsite(String value) { this.website = value; return this; } public String getDescription() { return description; } public AiModel setDescription(String value) { this.description = value; return this; } public String getIcon() { return icon; } public AiModel setIcon(String value) { this.icon = value; return this; } } }