be.looorent.ponto.transaction.TransactionClient 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.transaction;
import be.looorent.ponto.client.CollectionResponse;
import be.looorent.ponto.client.Page;
import java.util.Optional;
import java.util.UUID;
public interface TransactionClient {
Optional find(UUID accountId, UUID transactionId);
CollectionResponse findAll(UUID accountId);
CollectionResponse findAll(UUID accountId, Page page);
}