getCollectStockHistoryTransactions abstract method
- @GET("${Api.getCollectStockHistoryTransactions}/{type}")
Future<CollectStockHistoryModel>
getCollectStockHistoryTransactions(
{ - @Query("toPartyId") String? toPartyId,
- @Query("fromPartyId") String? fromPartyId,
- @Query("transactionByParty") required String transactionByParty,
- @Query("offset") required String offset,
- @Query("limit") required String limit,
- @Query("status") String? status,
- @Query("search") String? search,
- @Query("fromDate") String? fromDate,
- @Query("toDate") String? toDate,
- @Path("type") required String type,
- @Header("X-UserId") String xUserId = "",
- @Header("content-type") String contentType = "application/json",
})
Implementation
@GET("${Api.getCollectStockHistoryTransactions}/{type}")
Future<CollectStockHistoryModel> getCollectStockHistoryTransactions({
@Query("toPartyId") String? toPartyId,
@Query("fromPartyId") String? fromPartyId,
@Query("transactionByParty") required String transactionByParty,
@Query("offset") required String offset,
@Query("limit") required String limit,
@Query("status") String? status,
@Query("search") String? search,
@Query("fromDate") String? fromDate,
@Query("toDate") String? toDate,
@Path("type") required String type,
@Header("X-UserId") String xUserId = "",
@Header("content-type") String contentType = "application/json",
});