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

com.truelayer.java.entities.beneficiary.PaymentSource 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.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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy