
com.adyen.model.binlookup.MerchantDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adyen-java-api-library Show documentation
Show all versions of adyen-java-api-library Show documentation
Adyen API Client Library for Java
/*
* Adyen BinLookup API
*
* The version of the OpenAPI document: 54
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.adyen.model.binlookup;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.core.JsonProcessingException;
/**
* MerchantDetails
*/
@JsonPropertyOrder({
MerchantDetails.JSON_PROPERTY_COUNTRY_CODE,
MerchantDetails.JSON_PROPERTY_ENROLLED_IN3_D_SECURE,
MerchantDetails.JSON_PROPERTY_MCC
})
public class MerchantDetails {
public static final String JSON_PROPERTY_COUNTRY_CODE = "countryCode";
private String countryCode;
public static final String JSON_PROPERTY_ENROLLED_IN3_D_SECURE = "enrolledIn3DSecure";
private Boolean enrolledIn3DSecure;
public static final String JSON_PROPERTY_MCC = "mcc";
private String mcc;
public MerchantDetails() {
}
/**
* 2-letter ISO 3166 country code of the card acceptor location. > This parameter is required for the merchants who don't use Adyen as the payment authorisation gateway.
*
* @param countryCode 2-letter ISO 3166 country code of the card acceptor location. > This parameter is required for the merchants who don't use Adyen as the payment authorisation gateway.
* @return the current {@code MerchantDetails} instance, allowing for method chaining
*/
public MerchantDetails countryCode(String countryCode) {
this.countryCode = countryCode;
return this;
}
/**
* 2-letter ISO 3166 country code of the card acceptor location. > This parameter is required for the merchants who don't use Adyen as the payment authorisation gateway.
* @return countryCode 2-letter ISO 3166 country code of the card acceptor location. > This parameter is required for the merchants who don't use Adyen as the payment authorisation gateway.
*/
@JsonProperty(JSON_PROPERTY_COUNTRY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getCountryCode() {
return countryCode;
}
/**
* 2-letter ISO 3166 country code of the card acceptor location. > This parameter is required for the merchants who don't use Adyen as the payment authorisation gateway.
*
* @param countryCode 2-letter ISO 3166 country code of the card acceptor location. > This parameter is required for the merchants who don't use Adyen as the payment authorisation gateway.
*/
@JsonProperty(JSON_PROPERTY_COUNTRY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
/**
* If true, indicates that the merchant is enrolled in 3D Secure for the card network.
*
* @param enrolledIn3DSecure If true, indicates that the merchant is enrolled in 3D Secure for the card network.
* @return the current {@code MerchantDetails} instance, allowing for method chaining
*/
public MerchantDetails enrolledIn3DSecure(Boolean enrolledIn3DSecure) {
this.enrolledIn3DSecure = enrolledIn3DSecure;
return this;
}
/**
* If true, indicates that the merchant is enrolled in 3D Secure for the card network.
* @return enrolledIn3DSecure If true, indicates that the merchant is enrolled in 3D Secure for the card network.
*/
@JsonProperty(JSON_PROPERTY_ENROLLED_IN3_D_SECURE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getEnrolledIn3DSecure() {
return enrolledIn3DSecure;
}
/**
* If true, indicates that the merchant is enrolled in 3D Secure for the card network.
*
* @param enrolledIn3DSecure If true, indicates that the merchant is enrolled in 3D Secure for the card network.
*/
@JsonProperty(JSON_PROPERTY_ENROLLED_IN3_D_SECURE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setEnrolledIn3DSecure(Boolean enrolledIn3DSecure) {
this.enrolledIn3DSecure = enrolledIn3DSecure;
}
/**
* The merchant category code (MCC) is a four-digit number which relates to a particular market segment. This code reflects the predominant activity that is conducted by the merchant. The list of MCCs can be found [here](https://en.wikipedia.org/wiki/Merchant_category_code).
*
* @param mcc The merchant category code (MCC) is a four-digit number which relates to a particular market segment. This code reflects the predominant activity that is conducted by the merchant. The list of MCCs can be found [here](https://en.wikipedia.org/wiki/Merchant_category_code).
* @return the current {@code MerchantDetails} instance, allowing for method chaining
*/
public MerchantDetails mcc(String mcc) {
this.mcc = mcc;
return this;
}
/**
* The merchant category code (MCC) is a four-digit number which relates to a particular market segment. This code reflects the predominant activity that is conducted by the merchant. The list of MCCs can be found [here](https://en.wikipedia.org/wiki/Merchant_category_code).
* @return mcc The merchant category code (MCC) is a four-digit number which relates to a particular market segment. This code reflects the predominant activity that is conducted by the merchant. The list of MCCs can be found [here](https://en.wikipedia.org/wiki/Merchant_category_code).
*/
@JsonProperty(JSON_PROPERTY_MCC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getMcc() {
return mcc;
}
/**
* The merchant category code (MCC) is a four-digit number which relates to a particular market segment. This code reflects the predominant activity that is conducted by the merchant. The list of MCCs can be found [here](https://en.wikipedia.org/wiki/Merchant_category_code).
*
* @param mcc The merchant category code (MCC) is a four-digit number which relates to a particular market segment. This code reflects the predominant activity that is conducted by the merchant. The list of MCCs can be found [here](https://en.wikipedia.org/wiki/Merchant_category_code).
*/
@JsonProperty(JSON_PROPERTY_MCC)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setMcc(String mcc) {
this.mcc = mcc;
}
/**
* Return true if this MerchantDetails object is equal to o.
*/
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MerchantDetails merchantDetails = (MerchantDetails) o;
return Objects.equals(this.countryCode, merchantDetails.countryCode) &&
Objects.equals(this.enrolledIn3DSecure, merchantDetails.enrolledIn3DSecure) &&
Objects.equals(this.mcc, merchantDetails.mcc);
}
@Override
public int hashCode() {
return Objects.hash(countryCode, enrolledIn3DSecure, mcc);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MerchantDetails {\n");
sb.append(" countryCode: ").append(toIndentedString(countryCode)).append("\n");
sb.append(" enrolledIn3DSecure: ").append(toIndentedString(enrolledIn3DSecure)).append("\n");
sb.append(" mcc: ").append(toIndentedString(mcc)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Create an instance of MerchantDetails given an JSON string
*
* @param jsonString JSON string
* @return An instance of MerchantDetails
* @throws JsonProcessingException if the JSON string is invalid with respect to MerchantDetails
*/
public static MerchantDetails fromJson(String jsonString) throws JsonProcessingException {
return JSON.getMapper().readValue(jsonString, MerchantDetails.class);
}
/**
* Convert an instance of MerchantDetails to an JSON string
*
* @return JSON string
*/
public String toJson() throws JsonProcessingException {
return JSON.getMapper().writeValueAsString(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy