getRestRequest abstract method

  1. @GET.new("rest/s1/growerp/100/RestRequest")
Future<RestRequests> getRestRequest({
  1. @Query.new('hitId') String? hitId,
  2. @Query.new('userId') String? userId,
  3. @Query.new('ownerPartyId') String? ownerPartyId,
  4. @Query.new('startDateTime') String? startDateTime,
  5. @Query.new('endDateTime') String? endDateTime,
  6. @Query.new('start') int? start,
  7. @Query.new('limit') int? limit,
})

Implementation

@GET("rest/s1/growerp/100/RestRequest")
Future<RestRequests> getRestRequest({
  @Query('hitId') String? hitId,
  @Query('userId') String? userId,
  @Query('ownerPartyId') String? ownerPartyId,
  @Query('startDateTime') String? startDateTime,
  @Query('endDateTime') String? endDateTime,
  @Query('start') int? start,
  @Query('limit') int? limit,
});