Interface InviteService.WithRawResponse
-
- All Implemented Interfaces:
public interface InviteService.WithRawResponseA view of InviteService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract InviteService.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
@MustBeClosed() HttpResponseFor<InviteCreateResponse> create(String workspaceId)
Returns a raw HTTP response for
post /workspaces/{workspaceId}/invites, but is otherwise the same as InviteService.create.
-
create
@MustBeClosed() HttpResponseFor<InviteCreateResponse> create(String workspaceId, InviteCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<InviteCreateResponse> create(String workspaceId, InviteCreateParams params)
-
create
@MustBeClosed() abstract HttpResponseFor<InviteCreateResponse> create(InviteCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<InviteCreateResponse> create(InviteCreateParams params)
-
create
@MustBeClosed() HttpResponseFor<InviteCreateResponse> create(String workspaceId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InviteListResponse> list(String workspaceId)
Returns a raw HTTP response for
get /workspaces/{workspaceId}/invites, but is otherwise the same as InviteService.list.
-
list
@MustBeClosed() HttpResponseFor<InviteListResponse> list(String workspaceId, InviteListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InviteListResponse> list(String workspaceId, InviteListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<InviteListResponse> list(InviteListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InviteListResponse> list(InviteListParams params)
-
list
@MustBeClosed() HttpResponseFor<InviteListResponse> list(String workspaceId, RequestOptions requestOptions)
-
-
-
-