getCollectStockHistoryTransactions abstract method
- @GET.new("${Api.getCollectStockHistoryTransactions}/{type}")
Future<CollectStockHistoryModel>
getCollectStockHistoryTransactions(
{ - @Query.new("toPartyId") String? toPartyId,
- @Query.new("fromPartyId") String? fromPartyId,
- @Query.new("transactionByParty") required String transactionByParty,
- @Query.new("offset") required String offset,
- @Query.new("limit") required String limit,
- @Query.new("status") String? status,
- @Query.new("search") String? search,
- @Query.new("fromDate") String? fromDate,
- @Query.new("toDate") String? toDate,
- @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}")
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",
});