/* Options: Date: 2024-10-06 10:32:35 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: CRMLeadSearchRequest.* //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="/DynamicsCRM/Lead/Search", Verbs="POST") public static class CRMLeadSearchRequest implements IReturn { public String email = null; public String getEmail() { return email; } public CRMLeadSearchRequest setEmail(String value) { this.email = value; return this; } private static Object responseType = CRMLeadResponse.class; public Object getResponseType() { return responseType; } } public static class CRMLeadResponse { public ResponseStatus responseStatus = null; public String guid = null; public String first_name = null; public String last_name = null; public String middle_name = null; public String preferred_name = null; public String former_name = null; public String prefix = null; public String spouse_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 citizenship = null; public String citizenship_other = null; public String permanent_resident = null; public Date dob = null; public String denomination = null; public String gender = null; public String marital_status = null; public Boolean send_admissions_marketing_materials = null; public String email = null; public String email_secondary = null; public String phone_home = null; public String phone_bus = null; public String phone_cell = null; public String added_by = null; public Date added_date = null; public String changed_by = null; public Date changed_date = null; public String owner_full_name = null; public ResponseStatus getResponseStatus() { return responseStatus; } public CRMLeadResponse setResponseStatus(ResponseStatus value) { this.responseStatus = value; return this; } public String getGuid() { return guid; } public CRMLeadResponse setGuid(String value) { this.guid = value; return this; } public String getFirstName() { return first_name; } public CRMLeadResponse setFirstName(String value) { this.first_name = value; return this; } public String getLastName() { return last_name; } public CRMLeadResponse setLastName(String value) { this.last_name = value; return this; } public String getMiddleName() { return middle_name; } public CRMLeadResponse setMiddleName(String value) { this.middle_name = value; return this; } public String getPreferredName() { return preferred_name; } public CRMLeadResponse setPreferredName(String value) { this.preferred_name = value; return this; } public String getFormerName() { return former_name; } public CRMLeadResponse setFormerName(String value) { this.former_name = value; return this; } public String getPrefix() { return prefix; } public CRMLeadResponse setPrefix(String value) { this.prefix = value; return this; } public String getSpouseName() { return spouse_name; } public CRMLeadResponse setSpouseName(String value) { this.spouse_name = value; return this; } public String getAddr1() { return addr1; } public CRMLeadResponse setAddr1(String value) { this.addr1 = value; return this; } public String getAddr2() { return addr2; } public CRMLeadResponse setAddr2(String value) { this.addr2 = value; return this; } public String getCity() { return city; } public CRMLeadResponse setCity(String value) { this.city = value; return this; } public String getState() { return state; } public CRMLeadResponse setState(String value) { this.state = value; return this; } public String getCountry() { return country; } public CRMLeadResponse setCountry(String value) { this.country = value; return this; } public String getCode() { return code; } public CRMLeadResponse setCode(String value) { this.code = value; return this; } public String getCitizenship() { return citizenship; } public CRMLeadResponse setCitizenship(String value) { this.citizenship = value; return this; } public String getCitizenshipOther() { return citizenship_other; } public CRMLeadResponse setCitizenshipOther(String value) { this.citizenship_other = value; return this; } public String getPermanentResident() { return permanent_resident; } public CRMLeadResponse setPermanentResident(String value) { this.permanent_resident = value; return this; } public Date getDob() { return dob; } public CRMLeadResponse setDob(Date value) { this.dob = value; return this; } public String getDenomination() { return denomination; } public CRMLeadResponse setDenomination(String value) { this.denomination = value; return this; } public String getGender() { return gender; } public CRMLeadResponse setGender(String value) { this.gender = value; return this; } public String getMaritalStatus() { return marital_status; } public CRMLeadResponse setMaritalStatus(String value) { this.marital_status = value; return this; } public Boolean isSendAdmissionsMarketingMaterials() { return send_admissions_marketing_materials; } public CRMLeadResponse setSendAdmissionsMarketingMaterials(Boolean value) { this.send_admissions_marketing_materials = value; return this; } public String getEmail() { return email; } public CRMLeadResponse setEmail(String value) { this.email = value; return this; } public String getEmailSecondary() { return email_secondary; } public CRMLeadResponse setEmailSecondary(String value) { this.email_secondary = value; return this; } public String getPhoneHome() { return phone_home; } public CRMLeadResponse setPhoneHome(String value) { this.phone_home = value; return this; } public String getPhoneBus() { return phone_bus; } public CRMLeadResponse setPhoneBus(String value) { this.phone_bus = value; return this; } public String getPhoneCell() { return phone_cell; } public CRMLeadResponse setPhoneCell(String value) { this.phone_cell = value; return this; } public String getAddedBy() { return added_by; } public CRMLeadResponse setAddedBy(String value) { this.added_by = value; return this; } public Date getAddedDate() { return added_date; } public CRMLeadResponse setAddedDate(Date value) { this.added_date = value; return this; } public String getChangedBy() { return changed_by; } public CRMLeadResponse setChangedBy(String value) { this.changed_by = value; return this; } public Date getChangedDate() { return changed_date; } public CRMLeadResponse setChangedDate(Date value) { this.changed_date = value; return this; } public String getOwnerFullName() { return owner_full_name; } public CRMLeadResponse setOwnerFullName(String value) { this.owner_full_name = value; return this; } } }