/* Options: Date: 2024-10-06 10:34: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: CRMAccountUpsertMultipleRequest.* //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/Account/Upsert/Multiple", Verbs="POST") public static class CRMAccountUpsertMultipleRequest implements IReturn { public ArrayList accounts = null; public ArrayList getAccounts() { return accounts; } public CRMAccountUpsertMultipleRequest setAccounts(ArrayList value) { this.accounts = value; return this; } private static Object responseType = ResponseStatus.class; public Object getResponseType() { return responseType; } } @Route(Path="/DynamicsCRM/Account/Create", Verbs="POST") public static class CRMAccountCreateRequest implements IReturn { public Integer regent_id = null; public String name = null; public String other_name = null; public String business_type = null; public String regent_friendly_church = null; public String educational_affiliation = null; public String reason_added = null; public String connection_to_regent = null; public String denomination = 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 solicitation_method = null; public String solicitation_exceptions = null; public Boolean campaign_monitor_optin = null; public Boolean campaign_monitor_suppressed = null; public String campaign_monitor_lists = null; public String phone_home = null; public String phone_bus = null; public String phone_cell = null; public Boolean no_mail = null; public Boolean no_email = null; public Boolean no_bulk_email = null; public Boolean no_phone = null; public Boolean no_marketing_materials = null; public Boolean prefers_email = null; public Boolean prefers_phone = null; public String image_base64 = null; public String owning_username = null; public Integer getRegentId() { return regent_id; } public CRMAccountCreateRequest setRegentId(Integer value) { this.regent_id = value; return this; } public String getName() { return name; } public CRMAccountCreateRequest setName(String value) { this.name = value; return this; } public String getOtherName() { return other_name; } public CRMAccountCreateRequest setOtherName(String value) { this.other_name = value; return this; } public String getBusinessType() { return business_type; } public CRMAccountCreateRequest setBusinessType(String value) { this.business_type = value; return this; } public String getRegentFriendlyChurch() { return regent_friendly_church; } public CRMAccountCreateRequest setRegentFriendlyChurch(String value) { this.regent_friendly_church = value; return this; } public String getEducationalAffiliation() { return educational_affiliation; } public CRMAccountCreateRequest setEducationalAffiliation(String value) { this.educational_affiliation = value; return this; } public String getReasonAdded() { return reason_added; } public CRMAccountCreateRequest setReasonAdded(String value) { this.reason_added = value; return this; } public String getConnectionToRegent() { return connection_to_regent; } public CRMAccountCreateRequest setConnectionToRegent(String value) { this.connection_to_regent = value; return this; } public String getDenomination() { return denomination; } public CRMAccountCreateRequest setDenomination(String value) { this.denomination = value; return this; } public String getAddr1() { return addr1; } public CRMAccountCreateRequest setAddr1(String value) { this.addr1 = value; return this; } public String getAddr2() { return addr2; } public CRMAccountCreateRequest setAddr2(String value) { this.addr2 = value; return this; } public String getCity() { return city; } public CRMAccountCreateRequest setCity(String value) { this.city = value; return this; } public String getState() { return state; } public CRMAccountCreateRequest setState(String value) { this.state = value; return this; } public String getCountry() { return country; } public CRMAccountCreateRequest setCountry(String value) { this.country = value; return this; } public String getCode() { return code; } public CRMAccountCreateRequest setCode(String value) { this.code = value; return this; } public String getEmail() { return email; } public CRMAccountCreateRequest setEmail(String value) { this.email = value; return this; } public String getSolicitationMethod() { return solicitation_method; } public CRMAccountCreateRequest setSolicitationMethod(String value) { this.solicitation_method = value; return this; } public String getSolicitationExceptions() { return solicitation_exceptions; } public CRMAccountCreateRequest setSolicitationExceptions(String value) { this.solicitation_exceptions = value; return this; } public Boolean isCampaignMonitorOptin() { return campaign_monitor_optin; } public CRMAccountCreateRequest setCampaignMonitorOptin(Boolean value) { this.campaign_monitor_optin = value; return this; } public Boolean isCampaignMonitorSuppressed() { return campaign_monitor_suppressed; } public CRMAccountCreateRequest setCampaignMonitorSuppressed(Boolean value) { this.campaign_monitor_suppressed = value; return this; } public String getCampaignMonitorLists() { return campaign_monitor_lists; } public CRMAccountCreateRequest setCampaignMonitorLists(String value) { this.campaign_monitor_lists = value; return this; } public String getPhoneHome() { return phone_home; } public CRMAccountCreateRequest setPhoneHome(String value) { this.phone_home = value; return this; } public String getPhoneBus() { return phone_bus; } public CRMAccountCreateRequest setPhoneBus(String value) { this.phone_bus = value; return this; } public String getPhoneCell() { return phone_cell; } public CRMAccountCreateRequest setPhoneCell(String value) { this.phone_cell = value; return this; } public Boolean isNoMail() { return no_mail; } public CRMAccountCreateRequest setNoMail(Boolean value) { this.no_mail = value; return this; } public Boolean isNoEmail() { return no_email; } public CRMAccountCreateRequest setNoEmail(Boolean value) { this.no_email = value; return this; } public Boolean isNoBulkEmail() { return no_bulk_email; } public CRMAccountCreateRequest setNoBulkEmail(Boolean value) { this.no_bulk_email = value; return this; } public Boolean isNoPhone() { return no_phone; } public CRMAccountCreateRequest setNoPhone(Boolean value) { this.no_phone = value; return this; } public Boolean isNoMarketingMaterials() { return no_marketing_materials; } public CRMAccountCreateRequest setNoMarketingMaterials(Boolean value) { this.no_marketing_materials = value; return this; } public Boolean isPrefersEmail() { return prefers_email; } public CRMAccountCreateRequest setPrefersEmail(Boolean value) { this.prefers_email = value; return this; } public Boolean isPrefersPhone() { return prefers_phone; } public CRMAccountCreateRequest setPrefersPhone(Boolean value) { this.prefers_phone = value; return this; } public String getImageBase64() { return image_base64; } public CRMAccountCreateRequest setImageBase64(String value) { this.image_base64 = value; return this; } public String getOwningUsername() { return owning_username; } public CRMAccountCreateRequest setOwningUsername(String value) { this.owning_username = 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; } } }