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