getCollectStockHistoryProducts abstract method
- @GET.new("${Api.getCollectStockHistoryTransactions}/{type}/products")
Future<CollectStockHistoryDetailsModel>
getCollectStockHistoryProducts(
{ - @Query.new("assetsTransactionId") required String assetsTransactionId,
- @Query.new("offset") required String offset,
- @Query.new("limit") required String limit,
- @Path.new("type") required String type,
- @Header.new("X-UserId") String xUserId = "",
- @Header.new("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",
});