getCollectStockTransactionsAsset abstract method
- @GET.new(Api.getCollectStockTransactionsAsset)
Future<CheckStockAssetModel>
getCollectStockTransactionsAsset(
{ - @Query.new("pageNo") int pageNo = 0,
- @Query.new("perPageCount") int perPageCount = 10,
- @Query.new("filterStatus") required String filterStatus,
- @Query.new("productCode") required String productCode,
- @Query.new("scanInOrderId") required String scanInOrderId,
- @Query.new("orderBy") String orderBy = "ASC",
- @Query.new("sort") String sort = "id",
- @Header.new("X-User-Id") String xUserId = "",
- @Header.new("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",
});