All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.truelayer.java.merchantaccounts.entities.transactions.Remitter Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy