com.truelayer.java.entities.beneficiary.PaymentSource 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.PAYMENT_SOURCE;
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 PaymentSource extends Beneficiary {
private final Type type = PAYMENT_SOURCE;
private String paymentSourceId;
private String userId;
private String reference;
private String accountHolderName;
private List accountIdentifiers;
}