Interface LockboxRecipientService.WithRawResponse
-
- All Implemented Interfaces:
public interface LockboxRecipientService.WithRawResponseA view of LockboxRecipientService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract LockboxRecipientService.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<LockboxRecipient> create(LockboxRecipientCreateParams params)
Returns a raw HTTP response for
post /lockbox_recipients, but is otherwise the same as LockboxRecipientService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<LockboxRecipient> create(LockboxRecipientCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<LockboxRecipient> retrieve(String lockboxRecipientId)
Returns a raw HTTP response for
get /lockbox_recipients/{lockbox_recipient_id}, but is otherwise the same as LockboxRecipientService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<LockboxRecipient> retrieve(String lockboxRecipientId, LockboxRecipientRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<LockboxRecipient> retrieve(String lockboxRecipientId, LockboxRecipientRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<LockboxRecipient> retrieve(LockboxRecipientRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<LockboxRecipient> retrieve(LockboxRecipientRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<LockboxRecipient> retrieve(String lockboxRecipientId, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<LockboxRecipient> update(String lockboxRecipientId)
Returns a raw HTTP response for
patch /lockbox_recipients/{lockbox_recipient_id}, but is otherwise the same as LockboxRecipientService.update.
-
update
@MustBeClosed() HttpResponseFor<LockboxRecipient> update(String lockboxRecipientId, LockboxRecipientUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<LockboxRecipient> update(String lockboxRecipientId, LockboxRecipientUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponseFor<LockboxRecipient> update(LockboxRecipientUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponseFor<LockboxRecipient> update(LockboxRecipientUpdateParams params)
-
update
@MustBeClosed() HttpResponseFor<LockboxRecipient> update(String lockboxRecipientId, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<LockboxRecipientListPage> list()
Returns a raw HTTP response for
get /lockbox_recipients, but is otherwise the same as LockboxRecipientService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<LockboxRecipientListPage> list(LockboxRecipientListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<LockboxRecipientListPage> list(LockboxRecipientListParams params)
-
list
@MustBeClosed() HttpResponseFor<LockboxRecipientListPage> list(RequestOptions requestOptions)
-
-
-
-