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