Interface InviteServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface InviteServiceAsync.WithRawResponseA view of InviteServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract InviteServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponseFor<Invite>> create(InviteCreateParams params)
Returns a raw HTTP response for
post /organization/invites, but is otherwise the same as InviteServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<Invite>> create(InviteCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Invite>> retrieve(String inviteId)
Returns a raw HTTP response for
get /organization/invites/{invite_id}, but is otherwise the same as InviteServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Invite>> retrieve(String inviteId, InviteRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Invite>> retrieve(String inviteId, InviteRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Invite>> retrieve(InviteRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Invite>> retrieve(InviteRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponseFor<Invite>> retrieve(String inviteId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<InviteListPageAsync>> list()
Returns a raw HTTP response for
get /organization/invites, but is otherwise the same as InviteServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<InviteListPageAsync>> list(InviteListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<InviteListPageAsync>> list(InviteListParams params)
-
list
CompletableFuture<HttpResponseFor<InviteListPageAsync>> list(RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<InviteDeleteResponse>> delete(String inviteId)
Returns a raw HTTP response for
delete /organization/invites/{invite_id}, but is otherwise the same as InviteServiceAsync.delete.
-
delete
CompletableFuture<HttpResponseFor<InviteDeleteResponse>> delete(String inviteId, InviteDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<InviteDeleteResponse>> delete(String inviteId, InviteDeleteParams params)
-
delete
abstract CompletableFuture<HttpResponseFor<InviteDeleteResponse>> delete(InviteDeleteParams params, RequestOptions requestOptions)
-
delete
CompletableFuture<HttpResponseFor<InviteDeleteResponse>> delete(InviteDeleteParams params)
-
delete
CompletableFuture<HttpResponseFor<InviteDeleteResponse>> delete(String inviteId, RequestOptions requestOptions)
-
-
-
-