Skip to main content
Version: 2.x

Convert

 License: MIT 

Installation

pom.xml
<dependency>
<groupId>{{groupId}}</groupId>
<artifactId>{{artifactId}}</artifactId>
<version>{{version}}</version>
</dependency>

Client instantiation

ConvertClient client = new ConvertClient(key, secret);

Features

Get conversions

try{
ConversionHistory res = client.getConversions(new TimeFrame(startTime, endTime))).sync();
}catch(ApiException e){
//...
}