/* Options: Date: 2025-01-08 03:23:04 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: CreateApiModel.* //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 CreateApiModel implements IReturn, ICreateDb { 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 CreateApiModel setName(String value) { this.name = value; return this; } public String getWebsite() { return website; } public CreateApiModel setWebsite(String value) { this.website = value; return this; } public ArrayList getTags() { return tags; } public CreateApiModel setTags(ArrayList value) { this.tags = value; return this; } public String getLatest() { return latest; } public CreateApiModel setLatest(String value) { this.latest = value; return this; } public String getDescription() { return description; } public CreateApiModel setDescription(String value) { this.description = value; return this; } public String getIcon() { return icon; } public CreateApiModel 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; } } }