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

com.truelayer.java.entities.accountidentifier.BbanAccountIdentifier Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy