Package app.knock.api.services.blocking
Interface ScheduleService.WithRawResponse
-
- All Implemented Interfaces:
public interface ScheduleService.WithRawResponseA view of ScheduleService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract BulkService.WithRawResponsebulk()HttpResponseFor<List<Schedule>>create(ScheduleCreateParams params)Returns a raw HTTP response for post /v1/schedules, but is otherwise the same as ScheduleService.create.abstract HttpResponseFor<List<Schedule>>create(ScheduleCreateParams params, RequestOptions requestOptions)HttpResponseFor<List<Schedule>>update(ScheduleUpdateParams params)Returns a raw HTTP response for put /v1/schedules, but is otherwise the same as ScheduleService.update.abstract HttpResponseFor<List<Schedule>>update(ScheduleUpdateParams params, RequestOptions requestOptions)HttpResponseFor<ScheduleListPage>list(ScheduleListParams params)Returns a raw HTTP response for get /v1/schedules, but is otherwise the same as ScheduleService.list.abstract HttpResponseFor<ScheduleListPage>list(ScheduleListParams params, RequestOptions requestOptions)HttpResponseFor<List<Schedule>>delete(ScheduleDeleteParams params)Returns a raw HTTP response for delete /v1/schedules, but is otherwise the same as ScheduleService.delete.abstract HttpResponseFor<List<Schedule>>delete(ScheduleDeleteParams params, RequestOptions requestOptions)-
-
Method Detail
-
bulk
abstract BulkService.WithRawResponse bulk()
-
create
@MustBeClosed() HttpResponseFor<List<Schedule>> create(ScheduleCreateParams params)
Returns a raw HTTP response for
post /v1/schedules, but is otherwise the same as ScheduleService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<List<Schedule>> create(ScheduleCreateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<List<Schedule>> update(ScheduleUpdateParams params)
Returns a raw HTTP response for
put /v1/schedules, but is otherwise the same as ScheduleService.update.
-
update
@MustBeClosed() abstract HttpResponseFor<List<Schedule>> update(ScheduleUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ScheduleListPage> list(ScheduleListParams params)
Returns a raw HTTP response for
get /v1/schedules, but is otherwise the same as ScheduleService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<ScheduleListPage> list(ScheduleListParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponseFor<List<Schedule>> delete(ScheduleDeleteParams params)
Returns a raw HTTP response for
delete /v1/schedules, but is otherwise the same as ScheduleService.delete.
-
delete
@MustBeClosed() abstract HttpResponseFor<List<Schedule>> delete(ScheduleDeleteParams params, RequestOptions requestOptions)
-
-
-
-