/* Options: Date: 2024-10-06 10:20:32 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://data.regent-college.edu //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DirectoryPersonRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/Directory/{directory_uuid}", Verbs="POST") public static class DirectoryPersonRequest implements IReturn { public String directory_uuid = null; public String getDirectoryUuid() { return directory_uuid; } public DirectoryPersonRequest setDirectoryUuid(String value) { this.directory_uuid = value; return this; } private static Object responseType = DirectoryPersonResponse.class; public Object getResponseType() { return responseType; } } public static class DirectoryPersonResponse { public ResponseStatus responseStatus = null; public String directory_uuid = null; public String waiver = null; public Date bday = null; public Date spouse_bday = null; public String spouse_name = null; public Date wedding_date = null; public String kids = null; public String home_country = null; public String quote = null; public String bio = null; public String interests = null; public String category = null; public String imageBase64 = null; public String preferred_name = null; public String last_name = null; public String addr1 = null; public String addr2 = null; public String city = null; public String state = null; public String country = null; public String code = null; public String email = null; public String phone_home = null; public String phone_cell = null; public String program = null; public String field_of_work = null; public String church = null; public Boolean is_student = null; public Boolean is_staff = null; public Boolean is_faculty = null; public ResponseStatus getResponseStatus() { return responseStatus; } public DirectoryPersonResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getDirectoryUuid() { return directory_uuid; } public DirectoryPersonResponse setDirectoryUuid(String value) { this.directory_uuid = value; return this; } public String getWaiver() { return waiver; } public DirectoryPersonResponse setWaiver(String value) { this.waiver = value; return this; } public Date getBday() { return bday; } public DirectoryPersonResponse setBday(Date value) { this.bday = value; return this; } public Date getSpouseBday() { return spouse_bday; } public DirectoryPersonResponse setSpouseBday(Date value) { this.spouse_bday = value; return this; } public String getSpouseName() { return spouse_name; } public DirectoryPersonResponse setSpouseName(String value) { this.spouse_name = value; return this; } public Date getWeddingDate() { return wedding_date; } public DirectoryPersonResponse setWeddingDate(Date value) { this.wedding_date = value; return this; } public String getKids() { return kids; } public DirectoryPersonResponse setKids(String value) { this.kids = value; return this; } public String getHomeCountry() { return home_country; } public DirectoryPersonResponse setHomeCountry(String value) { this.home_country = value; return this; } public String getQuote() { return quote; } public DirectoryPersonResponse setQuote(String value) { this.quote = value; return this; } public String getBio() { return bio; } public DirectoryPersonResponse setBio(String value) { this.bio = value; return this; } public String getInterests() { return interests; } public DirectoryPersonResponse setInterests(String value) { this.interests = value; return this; } public String getCategory() { return category; } public DirectoryPersonResponse setCategory(String value) { this.category = value; return this; } public String getImageBase64() { return imageBase64; } public DirectoryPersonResponse setImageBase64(String value) { this.imageBase64 = value; return this; } public String getPreferredName() { return preferred_name; } public DirectoryPersonResponse setPreferredName(String value) { this.preferred_name = value; return this; } public String getLastName() { return last_name; } public DirectoryPersonResponse setLastName(String value) { this.last_name = value; return this; } public String getAddr1() { return addr1; } public DirectoryPersonResponse setAddr1(String value) { this.addr1 = value; return this; } public String getAddr2() { return addr2; } public DirectoryPersonResponse setAddr2(String value) { this.addr2 = value; return this; } public String getCity() { return city; } public DirectoryPersonResponse setCity(String value) { this.city = value; return this; } public String getState() { return state; } public DirectoryPersonResponse setState(String value) { this.state = value; return this; } public String getCountry() { return country; } public DirectoryPersonResponse setCountry(String value) { this.country = value; return this; } public String getCode() { return code; } public DirectoryPersonResponse setCode(String value) { this.code = value; return this; } public String getEmail() { return email; } public DirectoryPersonResponse setEmail(String value) { this.email = value; return this; } public String getPhoneHome() { return phone_home; } public DirectoryPersonResponse setPhoneHome(String value) { this.phone_home = value; return this; } public String getPhoneCell() { return phone_cell; } public DirectoryPersonResponse setPhoneCell(String value) { this.phone_cell = value; return this; } public String getProgram() { return program; } public DirectoryPersonResponse setProgram(String value) { this.program = value; return this; } public String getFieldOfWork() { return field_of_work; } public DirectoryPersonResponse setFieldOfWork(String value) { this.field_of_work = value; return this; } public String getChurch() { return church; } public DirectoryPersonResponse setChurch(String value) { this.church = value; return this; } public Boolean getIsStudent() { return is_student; } public DirectoryPersonResponse setIsStudent(Boolean value) { this.is_student = value; return this; } public Boolean getIsStaff() { return is_staff; } public DirectoryPersonResponse setIsStaff(Boolean value) { this.is_staff = value; return this; } public Boolean getIsFaculty() { return is_faculty; } public DirectoryPersonResponse setIsFaculty(Boolean value) { this.is_faculty = value; return this; } } }