Package de.adorsys.psd2.model
Class ConfirmationOfFunds
- java.lang.Object
-
- de.adorsys.psd2.model.ConfirmationOfFunds
-
@Validated @Generated(value="io.swagger.codegen.v3.generators.java.SpringCodegen", date="2020-11-12T17:35:11.808068+02:00[Europe/Kiev]") public class ConfirmationOfFunds extends ObjectJSON Request body for the \"Confirmation of funds service\". <table> <tr> <td>cardNumber</td> <td>String </td> <td>Optional</td> <td>Card Number of the card issued by the PIISP. Should be delivered if available.</td> </tr> <tr> <td>account</td> <td> Account Reference</td> <td>Mandatory</td> <td>PSU's account number.</td> </tr> <tr> <td>payee</td> <td>Max70Text</td> <td>Optional</td> <td>The merchant where the card is accepted as an information to the PSU.</td> </tr> <tr> <td>instructedAmount</td> <td>Amount</td> <td>Mandatory</td> <td>Transaction amount to be checked within the funds check mechanism.</td> </tr> </table>
-
-
Constructor Summary
Constructors Constructor Description ConfirmationOfFunds()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfirmationOfFundsaccount(AccountReference account)ConfirmationOfFundscardNumber(String cardNumber)booleanequals(Object o)@NotNull @Valid AccountReferencegetAccount()Get account@Size(max=35) StringgetCardNumber()Card Number of the card issued by the PIISP.@NotNull @Valid AmountgetInstructedAmount()Get instructedAmount@Size(max=70) StringgetPayee()Name payee.inthashCode()ConfirmationOfFundsinstructedAmount(Amount instructedAmount)ConfirmationOfFundspayee(String payee)voidsetAccount(AccountReference account)voidsetCardNumber(String cardNumber)voidsetInstructedAmount(Amount instructedAmount)voidsetPayee(String payee)StringtoString()
-
-
-
Method Detail
-
cardNumber
public ConfirmationOfFunds cardNumber(String cardNumber)
-
getCardNumber
@Size(max=35) public @Size(max=35) String getCardNumber()
Card Number of the card issued by the PIISP. Should be delivered if available.- Returns:
- cardNumber
-
setCardNumber
public void setCardNumber(String cardNumber)
-
account
public ConfirmationOfFunds account(AccountReference account)
-
getAccount
@NotNull @Valid public @NotNull @Valid AccountReference getAccount()
Get account- Returns:
- account
-
setAccount
public void setAccount(AccountReference account)
-
payee
public ConfirmationOfFunds payee(String payee)
-
getPayee
@Size(max=70) public @Size(max=70) String getPayee()
Name payee.- Returns:
- payee
-
setPayee
public void setPayee(String payee)
-
instructedAmount
public ConfirmationOfFunds instructedAmount(Amount instructedAmount)
-
getInstructedAmount
@NotNull @Valid public @NotNull @Valid Amount getInstructedAmount()
Get instructedAmount- Returns:
- instructedAmount
-
setInstructedAmount
public void setInstructedAmount(Amount instructedAmount)
-
-