com.truelayer.java.entities.accountidentifier.BbanAccountIdentifier 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.accountidentifier;
import static com.truelayer.java.entities.accountidentifier.AccountIdentifier.Type.BBAN;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
@Builder
@Getter
@EqualsAndHashCode(callSuper = false)
public class BbanAccountIdentifier extends AccountIdentifier {
private final Type type = BBAN;
private String bban;
}