Interface MixReportApi
public interface MixReportApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<String> retrieveXBRLReport(OffsetDateTime startDate, OffsetDateTime endDate, String currency) retrofit2.Call<String> retrieveXBRLReport(OffsetDateTime startDate, OffsetDateTime endDate, String currency, Map<String, String> headers)
-
Method Details
-
retrieveXBRLReport
@GET("v1/mixreport") retrofit2.Call<String> retrieveXBRLReport(@Query("startDate") OffsetDateTime startDate, @Query("endDate") OffsetDateTime endDate, @Query("currency") String currency) - Parameters:
startDate- (optional)endDate- (optional)currency- (optional)- Returns:
- Call<String>
-
retrieveXBRLReport
@GET("v1/mixreport") retrofit2.Call<String> retrieveXBRLReport(@Query("startDate") OffsetDateTime startDate, @Query("endDate") OffsetDateTime endDate, @Query("currency") String currency, @HeaderMap Map<String, String> headers) - Parameters:
startDate- (optional)endDate- (optional)currency- (optional)- Returns:
- Call<String>
-