Interface ProductService
-
public interface ProductService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description retrofit2.Call<java.util.Collection<ProductWithStockStatus>>getProductsWithStockStatus(java.lang.Integer cloudId, long warehouseId, int offset, int limit)
-
-
-
Method Detail
-
getProductsWithStockStatus
@GET("{cloudId}/{warehouseId}/list?offset=%s&limit=%s") retrofit2.Call<java.util.Collection<ProductWithStockStatus>> getProductsWithStockStatus(@Path("cloudId") java.lang.Integer cloudId, @Path("warehouseId") long warehouseId, @Query("offset") int offset, @Query("limit") int limit)
-
-