com.truelayer.java.entities.beneficiary.ExternalAccount Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy