getSellThruHistoryAssets abstract method
- @GET(Api.getSellThruHistoryAssets)
Future<StockDeliveryHistoryAssetModel>
getSellThruHistoryAssets(
{ - @Header("filterUserId") required String userId,
- @Query("perPageCount") int perPageCount = 2000,
- @Query("sort") String? id,
- @Query("orderBy") String order = "ASC",
- @Query("filterFromDate") String? fromDate,
- @Query("filterToDate") String? toDate,
- @Query("filterProductCode") required String productCode,
- @Query("filterTransferOrderId") required String filterTransferOrderId,
- @Query("filterPartnerId") required String filterPartnerID,
})
Implementation
@GET(Api.getSellThruHistoryAssets)
Future<StockDeliveryHistoryAssetModel> getSellThruHistoryAssets({
@Header("filterUserId") required String userId,
@Query("perPageCount") int perPageCount = 2000,
@Query("sort") String? id,
@Query("orderBy") String order = "ASC",
@Query("filterFromDate") String? fromDate,
@Query("filterToDate") String? toDate,
@Query("filterProductCode") required String productCode,
@Query("filterTransferOrderId") required String filterTransferOrderId,
@Query("filterPartnerId") required String filterPartnerID,
});