be.looorent.ponto.institution.FinancialInstitution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ponto-client Show documentation
Show all versions of ponto-client Show documentation
Client library for Ponto (https://myponto.com)
The newest version!
package be.looorent.ponto.institution;
import lombok.EqualsAndHashCode;
import lombok.Value;
import java.util.UUID;
@Value
@EqualsAndHashCode(onlyExplicitlyIncluded = true)
public class FinancialInstitution {
@EqualsAndHashCode.Include
private UUID id;
/**
* @return Name of the financial institution
*/
private String name;
}