getSchedules abstract method
- @GET.new(Api.getSchedules)
Future<ScheduleResponse>
getSchedules(
{ - @Query.new("page") int page = 1,
- @Query.new("size") int size = 10,
- @Query.new("order") String order = "desc",
- @Query.new("positionId") required String positionId,
- @Query.new("coordinates") String? coordinates,
- @Query.new("fromDate") String? fromDate,
- @Query.new("toDate") String? toDate,
- @Query.new("visitStatus") bool? visitStatus,
})
Implementation
@GET(Api.getSchedules)
Future<ScheduleResponse> getSchedules(
{@Query("page") int page = 1,
@Query("size") int size = 10,
@Query("order") String order = "desc",
@Query("positionId") required String positionId,
@Query("coordinates") String? coordinates,
@Query("fromDate") String? fromDate,
@Query("toDate") String? toDate,
@Query("visitStatus") bool? visitStatus});