Model.Riskv1decisionsOrderInformationShipTo Maven / Gradle / Ivy
/*
* CyberSource Merged Spec
* All CyberSource API specs merged together. These are available at https://developer.cybersource.com/api/reference/api-reference.html
*
* OpenAPI spec version: 0.0.1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package Model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
/**
* Riskv1decisionsOrderInformationShipTo
*/
public class Riskv1decisionsOrderInformationShipTo {
@SerializedName("address1")
private String address1 = null;
@SerializedName("address2")
private String address2 = null;
@SerializedName("address3")
private String address3 = null;
@SerializedName("administrativeArea")
private String administrativeArea = null;
@SerializedName("country")
private String country = null;
@SerializedName("destinationTypes")
private String destinationTypes = null;
@SerializedName("locality")
private String locality = null;
@SerializedName("firstName")
private String firstName = null;
@SerializedName("lastName")
private String lastName = null;
@SerializedName("middleName")
private String middleName = null;
@SerializedName("phoneNumber")
private String phoneNumber = null;
@SerializedName("postalCode")
private String postalCode = null;
@SerializedName("destinationCode")
private Integer destinationCode = null;
@SerializedName("method")
private String method = null;
public Riskv1decisionsOrderInformationShipTo address1(String address1) {
this.address1 = address1;
return this;
}
/**
* First line of the shipping address. Required field for authorization if any shipping address information is included in the request; otherwise, optional. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return address1
**/
@ApiModelProperty(value = "First line of the shipping address. Required field for authorization if any shipping address information is included in the request; otherwise, optional. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getAddress1() {
return address1;
}
public void setAddress1(String address1) {
this.address1 = address1;
}
public Riskv1decisionsOrderInformationShipTo address2(String address2) {
this.address2 = address2;
return this;
}
/**
* Second line of the shipping address. Optional field. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return address2
**/
@ApiModelProperty(value = "Second line of the shipping address. Optional field. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getAddress2() {
return address2;
}
public void setAddress2(String address2) {
this.address2 = address2;
}
public Riskv1decisionsOrderInformationShipTo address3(String address3) {
this.address3 = address3;
return this;
}
/**
* Third line of the shipping address. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return address3
**/
@ApiModelProperty(value = "Third line of the shipping address. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getAddress3() {
return address3;
}
public void setAddress3(String address3) {
this.address3 = address3;
}
public Riskv1decisionsOrderInformationShipTo administrativeArea(String administrativeArea) {
this.administrativeArea = administrativeArea;
return this;
}
/**
* State or province of the shipping address. Use the [State, Province, and Territory Codes for the United States and Canada](https://developer.cybersource.com/library/documentation/sbc/quickref/states_and_provinces.pdf) (maximum length: 2) Required field for authorization if any shipping address information is included in the request and shipping to the U.S. or Canada; otherwise, optional. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return administrativeArea
**/
@ApiModelProperty(value = "State or province of the shipping address. Use the [State, Province, and Territory Codes for the United States and Canada](https://developer.cybersource.com/library/documentation/sbc/quickref/states_and_provinces.pdf) (maximum length: 2) Required field for authorization if any shipping address information is included in the request and shipping to the U.S. or Canada; otherwise, optional. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getAdministrativeArea() {
return administrativeArea;
}
public void setAdministrativeArea(String administrativeArea) {
this.administrativeArea = administrativeArea;
}
public Riskv1decisionsOrderInformationShipTo country(String country) {
this.country = country;
return this;
}
/**
* Country of the shipping address. Use the two-character [ISO Standard Country Codes.](http://apps.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf) Required field for authorization if any shipping address information is included in the request; otherwise, optional. #### Tax Calculation Optional field for U.S., Canadian, international tax, and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return country
**/
@ApiModelProperty(value = "Country of the shipping address. Use the two-character [ISO Standard Country Codes.](http://apps.cybersource.com/library/documentation/sbc/quickref/countries_alpha_list.pdf) Required field for authorization if any shipping address information is included in the request; otherwise, optional. #### Tax Calculation Optional field for U.S., Canadian, international tax, and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public Riskv1decisionsOrderInformationShipTo destinationTypes(String destinationTypes) {
this.destinationTypes = destinationTypes;
return this;
}
/**
* Shipping destination of item. Example: Commercial, Residential, Store
* @return destinationTypes
**/
@ApiModelProperty(value = "Shipping destination of item. Example: Commercial, Residential, Store ")
public String getDestinationTypes() {
return destinationTypes;
}
public void setDestinationTypes(String destinationTypes) {
this.destinationTypes = destinationTypes;
}
public Riskv1decisionsOrderInformationShipTo locality(String locality) {
this.locality = locality;
return this;
}
/**
* City of the shipping address. Required field for authorization if any shipping address information is included in the request and shipping to the U.S. or Canada; otherwise, optional. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return locality
**/
@ApiModelProperty(value = "City of the shipping address. Required field for authorization if any shipping address information is included in the request and shipping to the U.S. or Canada; otherwise, optional. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getLocality() {
return locality;
}
public void setLocality(String locality) {
this.locality = locality;
}
public Riskv1decisionsOrderInformationShipTo firstName(String firstName) {
this.firstName = firstName;
return this;
}
/**
* First name of the recipient. #### Litle Maximum length: 25 #### All other processors Maximum length: 60 Optional field.
* @return firstName
**/
@ApiModelProperty(value = "First name of the recipient. #### Litle Maximum length: 25 #### All other processors Maximum length: 60 Optional field. ")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public Riskv1decisionsOrderInformationShipTo lastName(String lastName) {
this.lastName = lastName;
return this;
}
/**
* Last name of the recipient. #### Litle Maximum length: 25 #### All other processors Maximum length: 60 Optional field.
* @return lastName
**/
@ApiModelProperty(value = "Last name of the recipient. #### Litle Maximum length: 25 #### All other processors Maximum length: 60 Optional field. ")
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Riskv1decisionsOrderInformationShipTo middleName(String middleName) {
this.middleName = middleName;
return this;
}
/**
* Middle name of the recipient. #### Litle Maximum length: 25 #### All other processors Maximum length: 60 Optional field.
* @return middleName
**/
@ApiModelProperty(value = "Middle name of the recipient. #### Litle Maximum length: 25 #### All other processors Maximum length: 60 Optional field. ")
public String getMiddleName() {
return middleName;
}
public void setMiddleName(String middleName) {
this.middleName = middleName;
}
public Riskv1decisionsOrderInformationShipTo phoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* Phone number associated with the shipping address.
* @return phoneNumber
**/
@ApiModelProperty(value = "Phone number associated with the shipping address.")
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public Riskv1decisionsOrderInformationShipTo postalCode(String postalCode) {
this.postalCode = postalCode;
return this;
}
/**
* Postal code for the shipping address. The postal code must consist of 5 to 9 digits. Required field for authorization if any shipping address information is included in the request and shipping to the U.S. or Canada; otherwise, optional. When the billing country is the U.S., the 9-digit postal code must follow this format: [5 digits][dash][4 digits] Example 12345-6789 When the billing country is Canada, the 6-digit postal code must follow this format: [alpha][numeric][alpha][space][numeric][alpha][numeric] Example A1B 2C3 #### American Express Direct Before sending the postal code to the processor, all nonalphanumeric characters are removed and, if the remaining value is longer than nine characters, the value is truncated starting from the right side. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present.
* @return postalCode
**/
@ApiModelProperty(value = "Postal code for the shipping address. The postal code must consist of 5 to 9 digits. Required field for authorization if any shipping address information is included in the request and shipping to the U.S. or Canada; otherwise, optional. When the billing country is the U.S., the 9-digit postal code must follow this format: [5 digits][dash][4 digits] Example 12345-6789 When the billing country is Canada, the 6-digit postal code must follow this format: [alpha][numeric][alpha][space][numeric][alpha][numeric] Example A1B 2C3 #### American Express Direct Before sending the postal code to the processor, all nonalphanumeric characters are removed and, if the remaining value is longer than nine characters, the value is truncated starting from the right side. #### Tax Calculation Optional field for U.S. and Canadian taxes. Not applicable to international and value added taxes. Billing address objects will be used to determine the cardholder's location when shipTo objects are not present. ")
public String getPostalCode() {
return postalCode;
}
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
public Riskv1decisionsOrderInformationShipTo destinationCode(Integer destinationCode) {
this.destinationCode = destinationCode;
return this;
}
/**
* Indicates destination chosen for the transaction. Possible values: - 01- Ship to cardholder billing address - 02- Ship to another verified address on file with merchant - 03- Ship to address that is different than billing address - 04- Ship to store (store address should be populated on request) - 05- Digital goods - 06- Travel and event tickets, not shipped - 07- Other
* @return destinationCode
**/
@ApiModelProperty(value = "Indicates destination chosen for the transaction. Possible values: - 01- Ship to cardholder billing address - 02- Ship to another verified address on file with merchant - 03- Ship to address that is different than billing address - 04- Ship to store (store address should be populated on request) - 05- Digital goods - 06- Travel and event tickets, not shipped - 07- Other ")
public Integer getDestinationCode() {
return destinationCode;
}
public void setDestinationCode(Integer destinationCode) {
this.destinationCode = destinationCode;
}
public Riskv1decisionsOrderInformationShipTo method(String method) {
this.method = method;
return this;
}
/**
* Shipping method for the product. Possible values: - lowcost: Lowest-cost service - sameday: Courier or same-day service - oneday: Next-day or overnight service - twoday: Two-day service - threeday: Three-day service - pickup: Store pick-up - other: Other shipping method - none: No shipping method because product is a service or subscription Required for American Express SafeKey (U.S.).
* @return method
**/
@ApiModelProperty(value = "Shipping method for the product. Possible values: - lowcost: Lowest-cost service - sameday: Courier or same-day service - oneday: Next-day or overnight service - twoday: Two-day service - threeday: Three-day service - pickup: Store pick-up - other: Other shipping method - none: No shipping method because product is a service or subscription Required for American Express SafeKey (U.S.). ")
public String getMethod() {
return method;
}
public void setMethod(String method) {
this.method = method;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Riskv1decisionsOrderInformationShipTo riskv1decisionsOrderInformationShipTo = (Riskv1decisionsOrderInformationShipTo) o;
return Objects.equals(this.address1, riskv1decisionsOrderInformationShipTo.address1) &&
Objects.equals(this.address2, riskv1decisionsOrderInformationShipTo.address2) &&
Objects.equals(this.address3, riskv1decisionsOrderInformationShipTo.address3) &&
Objects.equals(this.administrativeArea, riskv1decisionsOrderInformationShipTo.administrativeArea) &&
Objects.equals(this.country, riskv1decisionsOrderInformationShipTo.country) &&
Objects.equals(this.destinationTypes, riskv1decisionsOrderInformationShipTo.destinationTypes) &&
Objects.equals(this.locality, riskv1decisionsOrderInformationShipTo.locality) &&
Objects.equals(this.firstName, riskv1decisionsOrderInformationShipTo.firstName) &&
Objects.equals(this.lastName, riskv1decisionsOrderInformationShipTo.lastName) &&
Objects.equals(this.middleName, riskv1decisionsOrderInformationShipTo.middleName) &&
Objects.equals(this.phoneNumber, riskv1decisionsOrderInformationShipTo.phoneNumber) &&
Objects.equals(this.postalCode, riskv1decisionsOrderInformationShipTo.postalCode) &&
Objects.equals(this.destinationCode, riskv1decisionsOrderInformationShipTo.destinationCode) &&
Objects.equals(this.method, riskv1decisionsOrderInformationShipTo.method);
}
@Override
public int hashCode() {
return Objects.hash(address1, address2, address3, administrativeArea, country, destinationTypes, locality, firstName, lastName, middleName, phoneNumber, postalCode, destinationCode, method);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Riskv1decisionsOrderInformationShipTo {\n");
sb.append(" address1: ").append(toIndentedString(address1)).append("\n");
sb.append(" address2: ").append(toIndentedString(address2)).append("\n");
sb.append(" address3: ").append(toIndentedString(address3)).append("\n");
sb.append(" administrativeArea: ").append(toIndentedString(administrativeArea)).append("\n");
sb.append(" country: ").append(toIndentedString(country)).append("\n");
sb.append(" destinationTypes: ").append(toIndentedString(destinationTypes)).append("\n");
sb.append(" locality: ").append(toIndentedString(locality)).append("\n");
sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n");
sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n");
sb.append(" middleName: ").append(toIndentedString(middleName)).append("\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" postalCode: ").append(toIndentedString(postalCode)).append("\n");
sb.append(" destinationCode: ").append(toIndentedString(destinationCode)).append("\n");
sb.append(" method: ").append(toIndentedString(method)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy