getRestRequest abstract method
- @GET.new("rest/s1/growerp/100/RestRequest")
Future<RestRequests>
getRestRequest(
{ - @Query.new('hitId') String? hitId,
- @Query.new('userId') String? userId,
- @Query.new('ownerPartyId') String? ownerPartyId,
- @Query.new('startDateTime') String? startDateTime,
- @Query.new('endDateTime') String? endDateTime,
- @Query.new('start') int? start,
- @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,
});