Package com.adyen.model.transfers
Class IbanAccountIdentification
- java.lang.Object
-
- com.adyen.model.transfers.IbanAccountIdentification
-
public class IbanAccountIdentification extends Object
IbanAccountIdentification
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIbanAccountIdentification.CustomTypeAdapterFactorystatic classIbanAccountIdentification.TypeEnum**iban**
-
Field Summary
Fields Modifier and Type Field Description static HashSet<String>openapiFieldsstatic HashSet<String>openapiRequiredFieldsstatic StringSERIALIZED_NAME_IBANstatic StringSERIALIZED_NAME_TYPE
-
Constructor Summary
Constructors Constructor Description IbanAccountIdentification()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)static IbanAccountIdentificationfromJson(String jsonString)Create an instance of IbanAccountIdentification given an JSON stringStringgetIban()The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.IbanAccountIdentification.TypeEnumgetType()**iban**inthashCode()IbanAccountIdentificationiban(String iban)voidsetIban(String iban)voidsetType(IbanAccountIdentification.TypeEnum type)StringtoJson()Convert an instance of IbanAccountIdentification to an JSON stringStringtoString()IbanAccountIdentificationtype(IbanAccountIdentification.TypeEnum type)static voidvalidateJsonObject(com.google.gson.JsonObject jsonObj)Validates the JSON Object and throws an exception if issues found
-
-
-
Field Detail
-
SERIALIZED_NAME_IBAN
public static final String SERIALIZED_NAME_IBAN
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TYPE
public static final String SERIALIZED_NAME_TYPE
- See Also:
- Constant Field Values
-
-
Method Detail
-
iban
public IbanAccountIdentification iban(String iban)
-
getIban
public String getIban()
The international bank account number as defined in the [ISO-13616](https://www.iso.org/standard/81090.html) standard.- Returns:
- iban
-
setIban
public void setIban(String iban)
-
type
public IbanAccountIdentification type(IbanAccountIdentification.TypeEnum type)
-
getType
public IbanAccountIdentification.TypeEnum getType()
**iban**- Returns:
- type
-
setType
public void setType(IbanAccountIdentification.TypeEnum type)
-
validateJsonObject
public static void validateJsonObject(com.google.gson.JsonObject jsonObj) throws IOExceptionValidates the JSON Object and throws an exception if issues found- Parameters:
jsonObj- JSON Object- Throws:
IOException- if the JSON Object is invalid with respect to IbanAccountIdentification
-
fromJson
public static IbanAccountIdentification fromJson(String jsonString) throws IOException
Create an instance of IbanAccountIdentification given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of IbanAccountIdentification
- Throws:
IOException- if the JSON string is invalid with respect to IbanAccountIdentification
-
toJson
public String toJson()
Convert an instance of IbanAccountIdentification to an JSON string- Returns:
- JSON string
-
-