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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy