com.truelayer.java.entities.beneficiary.BusinessAccount 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.entities.beneficiary;
import static com.truelayer.java.entities.beneficiary.Beneficiary.Type.BUSINESS_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 BusinessAccount extends Beneficiary {
private final Type type = BUSINESS_ACCOUNT;
private String reference;
private String accountHolderName;
private List accountIdentifiers;
}