/* Options: Date: 2024-10-06 10:27:49 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: DirectorySettingsUpdateRequest.* //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/Settings/{directory_uuid}/Save", Verbs="POST") public static class DirectorySettingsUpdateRequest implements IReturn { 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 field_of_work = null; public String church = null; public String getDirectoryUuid() { return directory_uuid; } public DirectorySettingsUpdateRequest setDirectoryUuid(String value) { this.directory_uuid = value; return this; } public String getWaiver() { return waiver; } public DirectorySettingsUpdateRequest setWaiver(String value) { this.waiver = value; return this; } public Date getBday() { return bday; } public DirectorySettingsUpdateRequest setBday(Date value) { this.bday = value; return this; } public Date getSpouseBday() { return spouse_bday; } public DirectorySettingsUpdateRequest setSpouseBday(Date value) { this.spouse_bday = value; return this; } public String getSpouseName() { return spouse_name; } public DirectorySettingsUpdateRequest setSpouseName(String value) { this.spouse_name = value; return this; } public Date getWeddingDate() { return wedding_date; } public DirectorySettingsUpdateRequest setWeddingDate(Date value) { this.wedding_date = value; return this; } public String getKids() { return kids; } public DirectorySettingsUpdateRequest setKids(String value) { this.kids = value; return this; } public String getHomeCountry() { return home_country; } public DirectorySettingsUpdateRequest setHomeCountry(String value) { this.home_country = value; return this; } public String getQuote() { return quote; } public DirectorySettingsUpdateRequest setQuote(String value) { this.quote = value; return this; } public String getBio() { return bio; } public DirectorySettingsUpdateRequest setBio(String value) { this.bio = value; return this; } public String getInterests() { return interests; } public DirectorySettingsUpdateRequest setInterests(String value) { this.interests = value; return this; } public String getCategory() { return category; } public DirectorySettingsUpdateRequest setCategory(String value) { this.category = value; return this; } public String getFieldOfWork() { return field_of_work; } public DirectorySettingsUpdateRequest setFieldOfWork(String value) { this.field_of_work = value; return this; } public String getChurch() { return church; } public DirectorySettingsUpdateRequest setChurch(String value) { this.church = value; return this; } private static Object responseType = ResponseStatus.class; public Object getResponseType() { return responseType; } } @DataContract public static class ResponseStatus { @DataMember(Order=1) public String errorCode = null; @DataMember(Order=2) public String message = null; @DataMember(Order=3) public String stackTrace = null; @DataMember(Order=4) public ArrayList errors = null; @DataMember(Order=5) public HashMap meta = null; public String getErrorCode() { return errorCode; } public ResponseStatus setErrorCode(String value) { this.errorCode = value; return this; } public String getMessage() { return message; } public ResponseStatus setMessage(String value) { this.message = value; return this; } public String getStackTrace() { return stackTrace; } public ResponseStatus setStackTrace(String value) { this.stackTrace = value; return this; } public ArrayList getErrors() { return errors; } public ResponseStatus setErrors(ArrayList value) { this.errors = value; return this; } public HashMap getMeta() { return meta; } public ResponseStatus setMeta(HashMap value) { this.meta = value; return this; } } }