/* Options: Date: 2024-10-06 10:30:13 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: EnvokeGiveExpressConsentRequestAsync.* //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="/Envoke/GiveExpressConsent", Verbs="POST") public static class EnvokeGiveExpressConsentRequestAsync implements IReturn { public String email = null; public String preferred_name = null; public String first_name = null; public String last_name = null; public String salutation = null; public String city = null; public String country = null; public String consent_source = null; public String getEmail() { return email; } public EnvokeGiveExpressConsentRequestAsync setEmail(String value) { this.email = value; return this; } public String getPreferredName() { return preferred_name; } public EnvokeGiveExpressConsentRequestAsync setPreferredName(String value) { this.preferred_name = value; return this; } public String getFirstName() { return first_name; } public EnvokeGiveExpressConsentRequestAsync setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public EnvokeGiveExpressConsentRequestAsync setLastName(String value) { this.last_name = value; return this; } public String getSalutation() { return salutation; } public EnvokeGiveExpressConsentRequestAsync setSalutation(String value) { this.salutation = value; return this; } public String getCity() { return city; } public EnvokeGiveExpressConsentRequestAsync setCity(String value) { this.city = value; return this; } public String getCountry() { return country; } public EnvokeGiveExpressConsentRequestAsync setCountry(String value) { this.country = value; return this; } public String getConsentSource() { return consent_source; } public EnvokeGiveExpressConsentRequestAsync setConsentSource(String value) { this.consent_source = 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; } } }