/* Options: Date: 2024-05-17 05:18:58 Version: 6.111 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: CreateRockstarVersion.* //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 { public static class CreateRockstarVersion extends RockstarBase implements IReturn, ICreateDb { private static Object responseType = RockstarWithIdAndRowVersionResponse.class; public Object getResponseType() { return responseType; } } public static class RockstarWithIdAndRowVersionResponse { public Integer id = null; public Long rowVersion = null; public ResponseStatus responseStatus = null; public Integer getId() { return id; } public RockstarWithIdAndRowVersionResponse setId(Integer value) { this.id = value; return this; } public Long getRowVersion() { return rowVersion; } public RockstarWithIdAndRowVersionResponse setRowVersion(Long value) { this.rowVersion = value; return this; } public ResponseStatus getResponseStatus() { return responseStatus; } public RockstarWithIdAndRowVersionResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } } public static enum LivingStatus { Alive, Dead; } public static class RockstarBase { public String firstName = null; public String lastName = null; public Integer age = null; public Date dateOfBirth = null; public Date dateDied = null; public LivingStatus livingStatus = null; public String getFirstName() { return firstName; } public RockstarBase setFirstName(String value) { this.firstName = value; return this; } public String getLastName() { return lastName; } public RockstarBase setLastName(String value) { this.lastName = value; return this; } public Integer getAge() { return age; } public RockstarBase setAge(Integer value) { this.age = value; return this; } public Date getDateOfBirth() { return dateOfBirth; } public RockstarBase setDateOfBirth(Date value) { this.dateOfBirth = value; return this; } public Date getDateDied() { return dateDied; } public RockstarBase setDateDied(Date value) { this.dateDied = value; return this; } public LivingStatus getLivingStatus() { return livingStatus; } public RockstarBase setLivingStatus(LivingStatus value) { this.livingStatus = value; return this; } } public static class RockstarVersion extends RockstarBase { public Integer id = null; public BigInteger rowVersion = null; public Integer getId() { return id; } public RockstarVersion setId(Integer value) { this.id = value; return this; } public BigInteger getRowVersion() { return rowVersion; } public RockstarVersion setRowVersion(BigInteger value) { this.rowVersion = value; return this; } } }