getCollectStockTransactionsAsset abstract method

  1. @GET(Api.getCollectStockTransactionsAsset)
Future<CheckStockAssetModel> getCollectStockTransactionsAsset({
  1. @Query("pageNo") int pageNo = 0,
  2. @Query("perPageCount") int perPageCount = 10,
  3. @Query("filterStatus") required String filterStatus,
  4. @Query("productCode") required String productCode,
  5. @Query("scanInOrderId") required String scanInOrderId,
  6. @Query("orderBy") String orderBy = "ASC",
  7. @Query("sort") String sort = "id",
  8. @Header("X-User-Id") String xUserId = "",
  9. @Header("content-type") String type = "application/json",
})

Implementation

@GET(Api.getCollectStockTransactionsAsset)
Future<CheckStockAssetModel> getCollectStockTransactionsAsset({
  @Query("pageNo") int pageNo = 0,
  @Query("perPageCount") int perPageCount = 10,
  @Query("filterStatus") required String filterStatus,
  @Query("productCode") required String productCode,
  @Query("scanInOrderId") required String scanInOrderId,
  @Query("orderBy") String orderBy = "ASC",
  @Query("sort") String sort = "id",
  @Header("X-User-Id") String xUserId = "",
  @Header("content-type") String type = "application/json",
});