getCollectStockHistoryProducts abstract method
- @GET("${Api.getCollectStockHistoryTransactions}/{type}/products")
Future<CollectStockHistoryDetailsModel>
getCollectStockHistoryProducts(
{ - @Query("assetsTransactionId") required String assetsTransactionId,
- @Query("offset") required String offset,
- @Query("limit") required String limit,
- @Path("type") required String type,
- @Header("X-UserId") String xUserId = "",
- @Header("content-type") String contentType = "application/json",
})
Implementation
@GET("${Api.getCollectStockHistoryTransactions}/{type}/products")
Future<CollectStockHistoryDetailsModel> getCollectStockHistoryProducts({
@Query("assetsTransactionId") required String assetsTransactionId,
@Query("offset") required String offset,
@Query("limit") required String limit,
@Path("type") required String type,
@Header("X-UserId") String xUserId = "",
@Header("content-type") String contentType = "application/json",
});