/* Options: Date: 2025-01-08 03:24:42 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: SearchData.* //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 SearchData implements IReturn { private static Object responseType = SearchDataResponse.class; public Object getResponseType() { return responseType; } } public static class SearchDataResponse { public ArrayList artists = new ArrayList(); public ArrayList modifiers = new ArrayList(); public ArrayList getArtists() { return artists; } public SearchDataResponse setArtists(ArrayList value) { this.artists = value; return this; } public ArrayList getModifiers() { return modifiers; } public SearchDataResponse setModifiers(ArrayList value) { this.modifiers = value; return this; } } public static class ArtistInfo { public Integer id = null; public String name = null; public String type = null; public Integer getId() { return id; } public ArtistInfo setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public ArtistInfo setName(String value) { this.name = value; return this; } public String getType() { return type; } public ArtistInfo setType(String value) { this.type = value; return this; } } public static class ModifierInfo { public Integer id = null; public String name = null; public String category = null; public Integer getId() { return id; } public ModifierInfo setId(Integer value) { this.id = value; return this; } public String getName() { return name; } public ModifierInfo setName(String value) { this.name = value; return this; } public String getCategory() { return category; } public ModifierInfo setCategory(String value) { this.category = value; return this; } } }