/* Options: Date: 2024-10-06 10:27:38 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: AddressSyncUpdateWithValuesRequest.* //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="/admissions/{uuid}/address/sync/update/withvalues", Verbs="POST") public static class AddressSyncUpdateWithValuesRequest implements IReturn { public String uuid = null; public String addr1 = null; public String addr2 = null; public String country = null; public String state = null; public String city = null; public String code = null; public String email = null; public String phone_home = null; public String phone_cell = null; public String phone_bus = null; public String authorizing_uuid = null; public String getUuid() { return uuid; } public AddressSyncUpdateWithValuesRequest setUuid(String value) { this.uuid = value; return this; } public String getAddr1() { return addr1; } public AddressSyncUpdateWithValuesRequest setAddr1(String value) { this.addr1 = value; return this; } public String getAddr2() { return addr2; } public AddressSyncUpdateWithValuesRequest setAddr2(String value) { this.addr2 = value; return this; } public String getCountry() { return country; } public AddressSyncUpdateWithValuesRequest setCountry(String value) { this.country = value; return this; } public String getState() { return state; } public AddressSyncUpdateWithValuesRequest setState(String value) { this.state = value; return this; } public String getCity() { return city; } public AddressSyncUpdateWithValuesRequest setCity(String value) { this.city = value; return this; } public String getCode() { return code; } public AddressSyncUpdateWithValuesRequest setCode(String value) { this.code = value; return this; } public String getEmail() { return email; } public AddressSyncUpdateWithValuesRequest setEmail(String value) { this.email = value; return this; } public String getPhoneHome() { return phone_home; } public AddressSyncUpdateWithValuesRequest setPhoneHome(String value) { this.phone_home = value; return this; } public String getPhoneCell() { return phone_cell; } public AddressSyncUpdateWithValuesRequest setPhoneCell(String value) { this.phone_cell = value; return this; } public String getPhoneBus() { return phone_bus; } public AddressSyncUpdateWithValuesRequest setPhoneBus(String value) { this.phone_bus = value; return this; } public String getAuthorizingUuid() { return authorizing_uuid; } public AddressSyncUpdateWithValuesRequest setAuthorizingUuid(String value) { this.authorizing_uuid = 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; } } }