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

com.truelayer.java.entities.beneficiary.ExternalAccount Maven / Gradle / Ivy

The newest version!
package com.truelayer.java.entities.beneficiary;

import static com.truelayer.java.entities.beneficiary.Beneficiary.Type.EXTERNAL_ACCOUNT;

import com.truelayer.java.merchantaccounts.entities.transactions.accountidentifier.AccountIdentifier;
import java.util.List;
import lombok.EqualsAndHashCode;
import lombok.Value;

@Value
@EqualsAndHashCode(callSuper = false)
public class ExternalAccount extends Beneficiary {
    private final Type type = EXTERNAL_ACCOUNT;

    private String reference;

    private String accountHolderName;

    private List accountIdentifiers;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy