be.looorent.ponto.synchronization.SynchronizationClient 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.synchronization;
import java.util.Optional;
import java.util.UUID;
public interface SynchronizationClient {
Optional find(UUID synchronizationId);
Synchronization synchronizeAccountTransactions(UUID accountId) throws ResourceNotFoundException;
Synchronization synchronizeAccountDetails(UUID accountId) throws ResourceNotFoundException;
}