/* Options: Date: 2025-05-09 23:56:24 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://active-ewebservice.biz/aeservices30/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddCustomerRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * AddCustomerRequires active-e Customer Service. */ @Route(Path="/AddCustomer", Verbs="POST") @DataContract public static class AddCustomerRequest extends BaseSecureRequest implements IReturn { /** * Location ID */ @DataMember @ApiMember(DataType="integer", Description="Location ID", Format="int64", IsRequired=true, Name="LocationId", ParameterType="query") public Long LocationId = null; /** * Customer Default Id */ @DataMember @ApiMember(DataType="integer", Description="Customer Default Id", Format="int64", IsRequired=true, Name="CustomerDefaultId", ParameterType="query") public Long CustomerDefaultId = null; /** * Tax Authority Id */ @DataMember @ApiMember(DataType="integer", Description="Tax Authority Id", Format="int64", IsRequired=true, Name="TaxAuthorityId", ParameterType="query") public Long TaxAuthorityId = null; @DataMember public String Name = null; @DataMember public String Attn = null; @DataMember public String Address1 = null; @DataMember public String Address2 = null; @DataMember public String City = null; @DataMember public String State = null; @DataMember public String Zip = null; @DataMember public String Country = null; @DataMember public String HomePhone = null; @DataMember public String WorkPhone = null; @DataMember public String CellPhone = null; @DataMember public String Employer = null; @DataMember public String SS = null; @DataMember public String Email = null; /** * Email Method. Set this to Word, PDF, HTML, or None */ @DataMember @ApiMember(DataType="string", Description="Email Method. Set this to Word, PDF, HTML, or None", Name="EmailMethod", ParameterType="query") public String EmailMethod = null; @DataMember public String Notes = null; @DataMember public LicenseInfo DriversLicenseInfo = null; /** * */ @DataMember @ApiMember(DataType="array", Description="", Name="FormInputList", ParameterType="query") public ArrayList FormInputList = null; /** * Can be SKIP, CHECK, or CHECKONLY. Defaults to SKIP. SKIP will not do a duplicate check. CHECK will do a duplicate check and the customer will not added if duplicates are found. CHECKONLY will just do a duplicate check; the customer will not be added. Duplicate check logic is based on the AIM system variable CustDupCheck. */ @DataMember @ApiMember(Description="Can be SKIP, CHECK, or CHECKONLY. Defaults to SKIP. SKIP will not do a duplicate check. CHECK will do a duplicate check and the customer will not added if duplicates are found. CHECKONLY will just do a duplicate check; the customer will not be added. Duplicate check logic is based on the AIM system variable CustDupCheck.", Name="DuplicateCheckMode") public String DuplicateCheckMode = null; public Long getLocationId() { return LocationId; } public AddCustomerRequest setLocationId(Long value) { this.LocationId = value; return this; } public Long getCustomerDefaultId() { return CustomerDefaultId; } public AddCustomerRequest setCustomerDefaultId(Long value) { this.CustomerDefaultId = value; return this; } public Long getTaxAuthorityId() { return TaxAuthorityId; } public AddCustomerRequest setTaxAuthorityId(Long value) { this.TaxAuthorityId = value; return this; } public String getName() { return Name; } public AddCustomerRequest setName(String value) { this.Name = value; return this; } public String getAttn() { return Attn; } public AddCustomerRequest setAttn(String value) { this.Attn = value; return this; } public String getAddress1() { return Address1; } public AddCustomerRequest setAddress1(String value) { this.Address1 = value; return this; } public String getAddress2() { return Address2; } public AddCustomerRequest setAddress2(String value) { this.Address2 = value; return this; } public String getCity() { return City; } public AddCustomerRequest setCity(String value) { this.City = value; return this; } public String getState() { return State; } public AddCustomerRequest setState(String value) { this.State = value; return this; } public String getZip() { return Zip; } public AddCustomerRequest setZip(String value) { this.Zip = value; return this; } public String getCountry() { return Country; } public AddCustomerRequest setCountry(String value) { this.Country = value; return this; } public String getHomePhone() { return HomePhone; } public AddCustomerRequest setHomePhone(String value) { this.HomePhone = value; return this; } public String getWorkPhone() { return WorkPhone; } public AddCustomerRequest setWorkPhone(String value) { this.WorkPhone = value; return this; } public String getCellPhone() { return CellPhone; } public AddCustomerRequest setCellPhone(String value) { this.CellPhone = value; return this; } public String getEmployer() { return Employer; } public AddCustomerRequest setEmployer(String value) { this.Employer = value; return this; } public String getSs() { return SS; } public AddCustomerRequest setSs(String value) { this.SS = value; return this; } public String getEmail() { return Email; } public AddCustomerRequest setEmail(String value) { this.Email = value; return this; } public String getEmailMethod() { return EmailMethod; } public AddCustomerRequest setEmailMethod(String value) { this.EmailMethod = value; return this; } public String getNotes() { return Notes; } public AddCustomerRequest setNotes(String value) { this.Notes = value; return this; } public LicenseInfo getDriversLicenseInfo() { return DriversLicenseInfo; } public AddCustomerRequest setDriversLicenseInfo(LicenseInfo value) { this.DriversLicenseInfo = value; return this; } public ArrayList getFormInputList() { return FormInputList; } public AddCustomerRequest setFormInputList(ArrayList value) { this.FormInputList = value; return this; } public String getDuplicateCheckMode() { return DuplicateCheckMode; } public AddCustomerRequest setDuplicateCheckMode(String value) { this.DuplicateCheckMode = value; return this; } private static Object responseType = AddCustomerResponse.class; public Object getResponseType() { return responseType; } } @DataContract public static class AddCustomerResponse extends BaseResponse { @DataMember public Integer Id = null; /** * Only returned if PerformDuplicateCheck parameter was passed in and possible duplicates were found. If this is returned, the customer record was *not* created. */ @DataMember @ApiMember(DataType="string", Description="Only returned if PerformDuplicateCheck parameter was passed in and possible duplicates were found. If this is returned, the customer record was *not* created.", Name="PossibleDuplicates") public ArrayList PossibleDuplicates = null; public Integer getId() { return Id; } public AddCustomerResponse setId(Integer value) { this.Id = value; return this; } public ArrayList getPossibleDuplicates() { return PossibleDuplicates; } public AddCustomerResponse setPossibleDuplicates(ArrayList value) { this.PossibleDuplicates = value; return this; } } @DataContract public static class BaseRequest { /** * This is your AIM API Key provided by Tri-Tech */ @DataMember @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="header") public String ApiKey = null; @DataMember @ApiMember(DataType="string", Name="OAuthToken", ParameterType="header") public String OAuthToken = null; public String getApiKey() { return ApiKey; } public BaseRequest setApiKey(String value) { this.ApiKey = value; return this; } public String getOAuthToken() { return OAuthToken; } public BaseRequest setOAuthToken(String value) { this.OAuthToken = value; return this; } } @DataContract public static class BaseSecureRequest extends BaseRequest { /** * */ @DataMember @ApiMember(DataType="string", Description="", Name="Token", ParameterType="Header") public String Token = null; /** * */ @DataMember @ApiMember(DataType="string", Description="", Name="DeviceId", ParameterType="Header") public String DeviceId = null; /** * */ @DataMember @ApiMember(DataType="string", Description="", IsRequired=true, Name="AppId", ParameterType="Header") public String AppId = null; public String getToken() { return Token; } public BaseSecureRequest setToken(String value) { this.Token = value; return this; } public String getDeviceId() { return DeviceId; } public BaseSecureRequest setDeviceId(String value) { this.DeviceId = value; return this; } public String getAppId() { return AppId; } public BaseSecureRequest setAppId(String value) { this.AppId = value; return this; } } @DataContract(Name="FormInput") public static class FormInput { /** * Field Name of the Input Field */ @DataMember @ApiMember(DataType="string", Description="Field Name of the Input Field", IsRequired=true, Name="Key", ParameterType="query") public String Key = null; /** * Value of the Input Field. */ @DataMember @ApiMember(DataType="string", Description="Value of the Input Field.", IsRequired=true, Name="Value", ParameterType="query") public String Value = null; /** * Whether or not the field is encryped with the C2B encryption key. */ @DataMember @ApiMember(DataType="boolean", Description="Whether or not the field is encryped with the C2B encryption key.", IsRequired=true, Name="Encrypted", ParameterType="query") public Boolean Encrypted = null; public String getKey() { return Key; } public FormInput setKey(String value) { this.Key = value; return this; } public String getValue() { return Value; } public FormInput setValue(String value) { this.Value = value; return this; } public Boolean isEncrypted() { return Encrypted; } public FormInput setEncrypted(Boolean value) { this.Encrypted = value; return this; } } @DataContract public static class LicenseInfo { @DataMember public String Number = null; @DataMember public String Height = null; @DataMember public String Weight = null; @DataMember public String Hair = null; @DataMember public String Eyes = null; @DataMember public String Expiration = null; @DataMember public String Birthday = null; @DataMember public String Ethnicity = null; @DataMember public String Gender = null; @DataMember public String State = null; public String getNumber() { return Number; } public LicenseInfo setNumber(String value) { this.Number = value; return this; } public String getHeight() { return Height; } public LicenseInfo setHeight(String value) { this.Height = value; return this; } public String getWeight() { return Weight; } public LicenseInfo setWeight(String value) { this.Weight = value; return this; } public String getHair() { return Hair; } public LicenseInfo setHair(String value) { this.Hair = value; return this; } public String getEyes() { return Eyes; } public LicenseInfo setEyes(String value) { this.Eyes = value; return this; } public String getExpiration() { return Expiration; } public LicenseInfo setExpiration(String value) { this.Expiration = value; return this; } public String getBirthday() { return Birthday; } public LicenseInfo setBirthday(String value) { this.Birthday = value; return this; } public String getEthnicity() { return Ethnicity; } public LicenseInfo setEthnicity(String value) { this.Ethnicity = value; return this; } public String getGender() { return Gender; } public LicenseInfo setGender(String value) { this.Gender = value; return this; } public String getState() { return State; } public LicenseInfo setState(String value) { this.State = value; return this; } } @DataContract public static class LocationInfo { @DataMember public Long Id = null; @DataMember public String Desc = null; @DataMember public String ShortDesc = null; @DataMember public String Region = null; @DataMember public BigDecimal Latitude = null; @DataMember public BigDecimal Longitude = null; @DataMember public String InStorePickup = null; @DataMember public Boolean Active = null; @DataMember public Integer CashSaleAcct = null; public Long getId() { return Id; } public LocationInfo setId(Long value) { this.Id = value; return this; } public String getDesc() { return Desc; } public LocationInfo setDesc(String value) { this.Desc = value; return this; } public String getShortDesc() { return ShortDesc; } public LocationInfo setShortDesc(String value) { this.ShortDesc = value; return this; } public String getRegion() { return Region; } public LocationInfo setRegion(String value) { this.Region = value; return this; } public BigDecimal getLatitude() { return Latitude; } public LocationInfo setLatitude(BigDecimal value) { this.Latitude = value; return this; } public BigDecimal getLongitude() { return Longitude; } public LocationInfo setLongitude(BigDecimal value) { this.Longitude = value; return this; } public String getInStorePickup() { return InStorePickup; } public LocationInfo setInStorePickup(String value) { this.InStorePickup = value; return this; } public Boolean isActive() { return Active; } public LocationInfo setActive(Boolean value) { this.Active = value; return this; } public Integer getCashSaleAcct() { return CashSaleAcct; } public LocationInfo setCashSaleAcct(Integer value) { this.CashSaleAcct = value; return this; } } @DataContract public static class CustomerSearchRecord extends BindableObject { @DataMember public Long Pk = null; @DataMember public Integer Acct = null; @DataMember public String Last = null; @DataMember public String Name = null; @DataMember public String Addr1 = null; @DataMember public String Addr2 = null; @DataMember public String City = null; @DataMember public String St = null; @DataMember public String Zip = null; @DataMember public String Phone = null; @DataMember public String Email = null; @DataMember public Boolean OpenInvoices = null; @DataMember public Boolean RentalActivity = null; @DataMember public String StLoc = null; @DataMember public Boolean Hold = null; @DataMember public String Barcode = null; @DataMember public Integer Color = null; @DataMember public ArrayList DependantInfo = null; @DataMember public AdditionalDetail AdditionalDetails = null; @DataMember public String MatchedOn = null; public Long getPk() { return Pk; } public CustomerSearchRecord setPk(Long value) { this.Pk = value; return this; } public Integer getAcct() { return Acct; } public CustomerSearchRecord setAcct(Integer value) { this.Acct = value; return this; } public String getLast() { return Last; } public CustomerSearchRecord setLast(String value) { this.Last = value; return this; } public String getName() { return Name; } public CustomerSearchRecord setName(String value) { this.Name = value; return this; } public String getAddr1() { return Addr1; } public CustomerSearchRecord setAddr1(String value) { this.Addr1 = value; return this; } public String getAddr2() { return Addr2; } public CustomerSearchRecord setAddr2(String value) { this.Addr2 = value; return this; } public String getCity() { return City; } public CustomerSearchRecord setCity(String value) { this.City = value; return this; } public String getSt() { return St; } public CustomerSearchRecord setSt(String value) { this.St = value; return this; } public String getZip() { return Zip; } public CustomerSearchRecord setZip(String value) { this.Zip = value; return this; } public String getPhone() { return Phone; } public CustomerSearchRecord setPhone(String value) { this.Phone = value; return this; } public String getEmail() { return Email; } public CustomerSearchRecord setEmail(String value) { this.Email = value; return this; } public Boolean isOpenInvoices() { return OpenInvoices; } public CustomerSearchRecord setOpenInvoices(Boolean value) { this.OpenInvoices = value; return this; } public Boolean isRentalActivity() { return RentalActivity; } public CustomerSearchRecord setRentalActivity(Boolean value) { this.RentalActivity = value; return this; } public String getStLoc() { return StLoc; } public CustomerSearchRecord setStLoc(String value) { this.StLoc = value; return this; } public Boolean isHold() { return Hold; } public CustomerSearchRecord setHold(Boolean value) { this.Hold = value; return this; } public String getBarcode() { return Barcode; } public CustomerSearchRecord setBarcode(String value) { this.Barcode = value; return this; } public Integer getColor() { return Color; } public CustomerSearchRecord setColor(Integer value) { this.Color = value; return this; } public ArrayList getDependantInfo() { return DependantInfo; } public CustomerSearchRecord setDependantInfo(ArrayList value) { this.DependantInfo = value; return this; } public AdditionalDetail getAdditionalDetails() { return AdditionalDetails; } public CustomerSearchRecord setAdditionalDetails(AdditionalDetail value) { this.AdditionalDetails = value; return this; } public String getMatchedOn() { return MatchedOn; } public CustomerSearchRecord setMatchedOn(String value) { this.MatchedOn = value; return this; } } @DataContract public static class CustomerDefaultInfo { @DataMember public Long Id = null; @DataMember public String Desc = null; @DataMember public String ShortDesc = null; public Long getId() { return Id; } public CustomerDefaultInfo setId(Long value) { this.Id = value; return this; } public String getDesc() { return Desc; } public CustomerDefaultInfo setDesc(String value) { this.Desc = value; return this; } public String getShortDesc() { return ShortDesc; } public CustomerDefaultInfo setShortDesc(String value) { this.ShortDesc = value; return this; } } @DataContract public static class DependantRecord { @DataMember public String Name = null; @DataMember public String OnlineId = null; @DataMember public String SchoolDistrict = null; @DataMember public String School = null; @DataMember public Long Id = null; public String getName() { return Name; } public DependantRecord setName(String value) { this.Name = value; return this; } public String getOnlineId() { return OnlineId; } public DependantRecord setOnlineId(String value) { this.OnlineId = value; return this; } public String getSchoolDistrict() { return SchoolDistrict; } public DependantRecord setSchoolDistrict(String value) { this.SchoolDistrict = value; return this; } public String getSchool() { return School; } public DependantRecord setSchool(String value) { this.School = value; return this; } public Long getId() { return Id; } public DependantRecord setId(Long value) { this.Id = value; return this; } } @DataContract public static class AdditionalDetail { @DataMember public Date CreationDate = null; @DataMember public Date LastModifiedDate = null; @DataMember public String Notes = null; @DataMember public CustomerDefaultInfo CustomerDefault = null; @DataMember public TaxAuthorityInfo TaxAuthority = null; @DataMember public Boolean CanCharge = null; @DataMember public String PopupNotes = null; @DataMember public String DlNumber = null; @DataMember public String Phone2 = null; @DataMember public String Phone3 = null; @DataMember public String Phone4 = null; @DataMember public LocationInfo Location = null; public Date getCreationDate() { return CreationDate; } public AdditionalDetail setCreationDate(Date value) { this.CreationDate = value; return this; } public Date getLastModifiedDate() { return LastModifiedDate; } public AdditionalDetail setLastModifiedDate(Date value) { this.LastModifiedDate = value; return this; } public String getNotes() { return Notes; } public AdditionalDetail setNotes(String value) { this.Notes = value; return this; } public CustomerDefaultInfo getCustomerDefault() { return CustomerDefault; } public AdditionalDetail setCustomerDefault(CustomerDefaultInfo value) { this.CustomerDefault = value; return this; } public TaxAuthorityInfo getTaxAuthority() { return TaxAuthority; } public AdditionalDetail setTaxAuthority(TaxAuthorityInfo value) { this.TaxAuthority = value; return this; } public Boolean isCanCharge() { return CanCharge; } public AdditionalDetail setCanCharge(Boolean value) { this.CanCharge = value; return this; } public String getPopupNotes() { return PopupNotes; } public AdditionalDetail setPopupNotes(String value) { this.PopupNotes = value; return this; } public String getDlNumber() { return DlNumber; } public AdditionalDetail setDlNumber(String value) { this.DlNumber = value; return this; } public String getPhone2() { return Phone2; } public AdditionalDetail setPhone2(String value) { this.Phone2 = value; return this; } public String getPhone3() { return Phone3; } public AdditionalDetail setPhone3(String value) { this.Phone3 = value; return this; } public String getPhone4() { return Phone4; } public AdditionalDetail setPhone4(String value) { this.Phone4 = value; return this; } public LocationInfo getLocation() { return Location; } public AdditionalDetail setLocation(LocationInfo value) { this.Location = value; return this; } } @DataContract public static class BindableObject { } @DataContract public static class TaxAuthorityInfo { @DataMember public Long Id = null; @DataMember public String Desc = null; @DataMember public String ShortDesc = null; public Long getId() { return Id; } public TaxAuthorityInfo setId(Long value) { this.Id = value; return this; } public String getDesc() { return Desc; } public TaxAuthorityInfo setDesc(String value) { this.Desc = value; return this; } public String getShortDesc() { return ShortDesc; } public TaxAuthorityInfo setShortDesc(String value) { this.ShortDesc = value; return this; } } @DataContract public static class BaseResponse { /** * */ @DataMember @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body") public BaseResponseResult Status = null; public BaseResponseResult getStatus() { return Status; } public BaseResponse setStatus(BaseResponseResult value) { this.Status = value; return this; } } }