Package com.adyen.model.marketpayaccount
Class MigratedAccounts
- java.lang.Object
-
- com.adyen.model.marketpayaccount.MigratedAccounts
-
public class MigratedAccounts extends Object
MigratedAccounts
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_BALANCE_ACCOUNT_IDstatic StringJSON_PROPERTY_VIRTUAL_ACCOUNT_CODE
-
Constructor Summary
Constructors Constructor Description MigratedAccounts()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MigratedAccountsbalanceAccountId(String balanceAccountId)booleanequals(Object o)Return true if this MigratedAccounts object is equal to o.static MigratedAccountsfromJson(String jsonString)Create an instance of MigratedAccounts given an JSON stringStringgetBalanceAccountId()The unique identifier of the account of the migrated account holder in the balance platform.StringgetVirtualAccountCode()The unique identifier of the account of the migrated account holder in the classic integration.inthashCode()voidsetBalanceAccountId(String balanceAccountId)voidsetVirtualAccountCode(String virtualAccountCode)StringtoJson()Convert an instance of MigratedAccounts to an JSON stringStringtoString()MigratedAccountsvirtualAccountCode(String virtualAccountCode)
-
-
-
Field Detail
-
JSON_PROPERTY_BALANCE_ACCOUNT_ID
public static final String JSON_PROPERTY_BALANCE_ACCOUNT_ID
- See Also:
- Constant Field Values
-
JSON_PROPERTY_VIRTUAL_ACCOUNT_CODE
public static final String JSON_PROPERTY_VIRTUAL_ACCOUNT_CODE
- See Also:
- Constant Field Values
-
-
Method Detail
-
balanceAccountId
public MigratedAccounts balanceAccountId(String balanceAccountId)
-
getBalanceAccountId
public String getBalanceAccountId()
The unique identifier of the account of the migrated account holder in the balance platform.- Returns:
- balanceAccountId
-
setBalanceAccountId
public void setBalanceAccountId(String balanceAccountId)
-
virtualAccountCode
public MigratedAccounts virtualAccountCode(String virtualAccountCode)
-
getVirtualAccountCode
public String getVirtualAccountCode()
The unique identifier of the account of the migrated account holder in the classic integration.- Returns:
- virtualAccountCode
-
setVirtualAccountCode
public void setVirtualAccountCode(String virtualAccountCode)
-
equals
public boolean equals(Object o)
Return true if this MigratedAccounts object is equal to o.
-
fromJson
public static MigratedAccounts fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of MigratedAccounts given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of MigratedAccounts
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to MigratedAccounts
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of MigratedAccounts to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-