All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cloudesire.platform.apiclient.api.StatisticsApi Maven / Gradle / Ivy

The newest version!
package com.cloudesire.platform.apiclient.api;

import com.cloudesire.platform.apiclient.dto.model.dto.StatisticsDTO;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;
import retrofit2.http.Query;

public interface StatisticsApi
{
    @GET( "statistics" )
    Call get();

    @GET( "statistics" )
    Call get( @Query( "environment" ) String environment );

    @GET( "statistics/{year}" )
    Call get( @Path( "year" ) String year, @Query( "environment" ) String environment );

    @GET( "statistics/{year}/{month}" )
    Call get( @Path( "year" ) String year, @Path( "month" ) String month,
            @Query( "environment" ) String environment );

    @GET( "statistics/{year}/{month}/{day}" )
    Call get( @Path( "year" ) String year, @Path( "month" ) String month, @Path( "day" ) String day,
            @Query( "environment" ) String environment );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy