com.truelayer.java.merchantaccounts.entities.transactions.Remitter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truelayer-java Show documentation
Show all versions of truelayer-java Show documentation
TrueLayer Java SDK for https://truelayer.com
package com.truelayer.java.merchantaccounts.entities.transactions;
import com.truelayer.java.merchantaccounts.entities.transactions.accountidentifier.AccountIdentifier;
import java.util.List;
import lombok.Value;
/**
* A transaction item specific DTO for external payments
* representing account identifiers of either IBAN or SCAN type.
* This is deliberately different from the more generic
* {@link com.truelayer.java.entities.Remitter} class.
*/
@Value
public class Remitter {
private List accountIdentifiers;
private String accountHolderName;
private String reference;
}