/* Options: Date: 2024-05-12 19:18:30 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: StoreRockstars.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/rockstars", Verbs="POST") public static class StoreRockstars extends ArrayList implements IReturn { private static Object responseType = StoreRockstars.class; public Object getResponseType() { return responseType; } } public static class Rockstar { public Integer id = null; public String firstName = null; public String lastName = null; public Integer age = null; public Integer getId() { return id; } public Rockstar setId(Integer value) { this.id = value; return this; } public String getFirstName() { return firstName; } public Rockstar setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public Rockstar setLastName(String value) { this.lastName = value; return this; } public Integer getAge() { return age; } public Rockstar setAge(Integer value) { this.age = value; return this; } } }