com.paypal.sdk.models.BancontactPaymentObject Maven / Gradle / Ivy
/*
* PaypalServerSDKLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
package com.paypal.sdk.models;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonSetter;
/**
* This is a model class for BancontactPaymentObject type.
*/
public class BancontactPaymentObject {
private String name;
private String countryCode;
private String bic;
private String ibanLastChars;
private String cardLastDigits;
/**
* Default constructor.
*/
public BancontactPaymentObject() {
}
/**
* Initialization constructor.
* @param name String value for name.
* @param countryCode String value for countryCode.
* @param bic String value for bic.
* @param ibanLastChars String value for ibanLastChars.
* @param cardLastDigits String value for cardLastDigits.
*/
public BancontactPaymentObject(
String name,
String countryCode,
String bic,
String ibanLastChars,
String cardLastDigits) {
this.name = name;
this.countryCode = countryCode;
this.bic = bic;
this.ibanLastChars = ibanLastChars;
this.cardLastDigits = cardLastDigits;
}
/**
* Getter for Name.
* The full name representation like Mr J Smith.
* @return Returns the String
*/
@JsonGetter("name")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getName() {
return name;
}
/**
* Setter for Name.
* The full name representation like Mr J Smith.
* @param name Value for String
*/
@JsonSetter("name")
public void setName(String name) {
this.name = name;
}
/**
* Getter for CountryCode.
* The [two-character ISO 3166-1 code](/api/rest/reference/country-codes/) that identifies the
* country or region.<blockquote><strong>Note:</strong> The country code for Great Britain is
* <code>GB</code> and not <code>UK</code> as used in the top-level domain names for that
* country. Use the `C2` country code for China worldwide for comparable uncontrolled price
* (CUP) method, bank card, and cross-border transactions.</blockquote>
* @return Returns the String
*/
@JsonGetter("country_code")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getCountryCode() {
return countryCode;
}
/**
* Setter for CountryCode.
* The [two-character ISO 3166-1 code](/api/rest/reference/country-codes/) that identifies the
* country or region.<blockquote><strong>Note:</strong> The country code for Great Britain is
* <code>GB</code> and not <code>UK</code> as used in the top-level domain names for that
* country. Use the `C2` country code for China worldwide for comparable uncontrolled price
* (CUP) method, bank card, and cross-border transactions.</blockquote>
* @param countryCode Value for String
*/
@JsonSetter("country_code")
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
/**
* Getter for Bic.
* The business identification code (BIC). In payments systems, a BIC is used to identify a
* specific business, most commonly a bank.
* @return Returns the String
*/
@JsonGetter("bic")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getBic() {
return bic;
}
/**
* Setter for Bic.
* The business identification code (BIC). In payments systems, a BIC is used to identify a
* specific business, most commonly a bank.
* @param bic Value for String
*/
@JsonSetter("bic")
public void setBic(String bic) {
this.bic = bic;
}
/**
* Getter for IbanLastChars.
* The last characters of the IBAN used to pay.
* @return Returns the String
*/
@JsonGetter("iban_last_chars")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getIbanLastChars() {
return ibanLastChars;
}
/**
* Setter for IbanLastChars.
* The last characters of the IBAN used to pay.
* @param ibanLastChars Value for String
*/
@JsonSetter("iban_last_chars")
public void setIbanLastChars(String ibanLastChars) {
this.ibanLastChars = ibanLastChars;
}
/**
* Getter for CardLastDigits.
* The last digits of the card used to fund the Bancontact payment.
* @return Returns the String
*/
@JsonGetter("card_last_digits")
@JsonInclude(JsonInclude.Include.NON_NULL)
public String getCardLastDigits() {
return cardLastDigits;
}
/**
* Setter for CardLastDigits.
* The last digits of the card used to fund the Bancontact payment.
* @param cardLastDigits Value for String
*/
@JsonSetter("card_last_digits")
public void setCardLastDigits(String cardLastDigits) {
this.cardLastDigits = cardLastDigits;
}
/**
* Converts this BancontactPaymentObject into string format.
* @return String representation of this class
*/
@Override
public String toString() {
return "BancontactPaymentObject [" + "name=" + name + ", countryCode=" + countryCode
+ ", bic=" + bic + ", ibanLastChars=" + ibanLastChars + ", cardLastDigits="
+ cardLastDigits + "]";
}
/**
* Builds a new {@link BancontactPaymentObject.Builder} object.
* Creates the instance with the state of the current model.
* @return a new {@link BancontactPaymentObject.Builder} object
*/
public Builder toBuilder() {
Builder builder = new Builder()
.name(getName())
.countryCode(getCountryCode())
.bic(getBic())
.ibanLastChars(getIbanLastChars())
.cardLastDigits(getCardLastDigits());
return builder;
}
/**
* Class to build instances of {@link BancontactPaymentObject}.
*/
public static class Builder {
private String name;
private String countryCode;
private String bic;
private String ibanLastChars;
private String cardLastDigits;
/**
* Setter for name.
* @param name String value for name.
* @return Builder
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* Setter for countryCode.
* @param countryCode String value for countryCode.
* @return Builder
*/
public Builder countryCode(String countryCode) {
this.countryCode = countryCode;
return this;
}
/**
* Setter for bic.
* @param bic String value for bic.
* @return Builder
*/
public Builder bic(String bic) {
this.bic = bic;
return this;
}
/**
* Setter for ibanLastChars.
* @param ibanLastChars String value for ibanLastChars.
* @return Builder
*/
public Builder ibanLastChars(String ibanLastChars) {
this.ibanLastChars = ibanLastChars;
return this;
}
/**
* Setter for cardLastDigits.
* @param cardLastDigits String value for cardLastDigits.
* @return Builder
*/
public Builder cardLastDigits(String cardLastDigits) {
this.cardLastDigits = cardLastDigits;
return this;
}
/**
* Builds a new {@link BancontactPaymentObject} object using the set fields.
* @return {@link BancontactPaymentObject}
*/
public BancontactPaymentObject build() {
return new BancontactPaymentObject(name, countryCode, bic, ibanLastChars,
cardLastDigits);
}
}
}