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