Package com.increase.api.services.async
Interface LockboxServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface LockboxServiceAsync.WithRawResponseA view of LockboxServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<Lockbox>> create(LockboxCreateParams params)
Returns a raw HTTP response for
post /lockboxes, but is otherwise the same as LockboxServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Lockbox>> create(LockboxCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<Lockbox>> retrieve(LockboxRetrieveParams params)
Returns a raw HTTP response for
get /lockboxes/{lockbox_id}, but is otherwise the same as LockboxServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Lockbox>> retrieve(LockboxRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() CompletableFuture<HttpResponseFor<Lockbox>> update(LockboxUpdateParams params)
Returns a raw HTTP response for
patch /lockboxes/{lockbox_id}, but is otherwise the same as LockboxServiceAsync.update.
-
update
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<Lockbox>> update(LockboxUpdateParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<LockboxListPageAsync>> list()
Returns a raw HTTP response for
get /lockboxes, but is otherwise the same as LockboxServiceAsync.list.
-
list
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<LockboxListPageAsync>> list(LockboxListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<LockboxListPageAsync>> list(LockboxListParams params)
-
list
@MustBeClosed() CompletableFuture<HttpResponseFor<LockboxListPageAsync>> list(RequestOptions requestOptions)
-
-
-
-