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 abstract HttpResponseFor<Lockbox>create(LockboxCreateParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /lockboxes, but is otherwise the same as LockboxService.create.abstract HttpResponseFor<Lockbox>create(LockboxCreateParams params)Returns a raw HTTP response for post /lockboxes, but is otherwise the same as LockboxService.create.abstract HttpResponseFor<Lockbox>retrieve(LockboxRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /lockboxes/{lockbox_id}, but is otherwise the same as LockboxService.retrieve.abstract 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>update(LockboxUpdateParams params, RequestOptions requestOptions)Returns a raw HTTP response for patch /lockboxes/{lockbox_id}, but is otherwise the same as LockboxService.update.abstract 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<LockboxListPage>list(LockboxListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /lockboxes, but is otherwise the same as LockboxService.list.abstract HttpResponseFor<LockboxListPage>list(LockboxListParams params)Returns a raw HTTP response for get /lockboxes, but is otherwise the same as LockboxService.list.abstract HttpResponseFor<LockboxListPage>list()Returns a raw HTTP response for get /lockboxes, but is otherwise the same as LockboxService.list.HttpResponseFor<LockboxListPage>list(RequestOptions requestOptions)Returns a raw HTTP response for get /lockboxes, but is otherwise the same as LockboxService.list.-
-
Method Detail
-
create
abstract HttpResponseFor<Lockbox> create(LockboxCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /lockboxes, but is otherwise the same as LockboxService.create.
-
create
abstract HttpResponseFor<Lockbox> create(LockboxCreateParams params)
Returns a raw HTTP response for
post /lockboxes, but is otherwise the same as LockboxService.create.
-
retrieve
abstract HttpResponseFor<Lockbox> retrieve(LockboxRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /lockboxes/{lockbox_id}, but is otherwise the same as LockboxService.retrieve.
-
retrieve
abstract HttpResponseFor<Lockbox> retrieve(LockboxRetrieveParams params)
Returns a raw HTTP response for
get /lockboxes/{lockbox_id}, but is otherwise the same as LockboxService.retrieve.
-
update
abstract HttpResponseFor<Lockbox> update(LockboxUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
patch /lockboxes/{lockbox_id}, but is otherwise the same as LockboxService.update.
-
update
abstract HttpResponseFor<Lockbox> update(LockboxUpdateParams params)
Returns a raw HTTP response for
patch /lockboxes/{lockbox_id}, but is otherwise the same as LockboxService.update.
-
list
abstract HttpResponseFor<LockboxListPage> list(LockboxListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /lockboxes, but is otherwise the same as LockboxService.list.
-
list
abstract HttpResponseFor<LockboxListPage> list(LockboxListParams params)
Returns a raw HTTP response for
get /lockboxes, but is otherwise the same as LockboxService.list.
-
list
abstract HttpResponseFor<LockboxListPage> list()
Returns a raw HTTP response for
get /lockboxes, but is otherwise the same as LockboxService.list.
-
list
HttpResponseFor<LockboxListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /lockboxes, but is otherwise the same as LockboxService.list.
-
-
-
-