Interface InputItemService.WithRawResponse
-
- All Implemented Interfaces:
public interface InputItemService.WithRawResponse
A view of InputItemService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract InputItemService.WithRawResponse
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. HttpResponseFor<InputItemListPage>
list(String responseId)
Returns a raw HTTP response for get /responses/{response_id}/input_items
, but is otherwise the same as InputItemService.list.HttpResponseFor<InputItemListPage>
list(String responseId, InputItemListParams params, RequestOptions requestOptions)
HttpResponseFor<InputItemListPage>
list(String responseId, InputItemListParams params)
abstract HttpResponseFor<InputItemListPage>
list(InputItemListParams params, RequestOptions requestOptions)
HttpResponseFor<InputItemListPage>
list(InputItemListParams params)
HttpResponseFor<InputItemListPage>
list(String responseId, RequestOptions requestOptions)
-
-
Method Detail
-
withOptions
abstract InputItemService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<InputItemListPage> list(String responseId)
Returns a raw HTTP response for
get /responses/{response_id}/input_items
, but is otherwise the same as InputItemService.list.
-
list
@MustBeClosed() HttpResponseFor<InputItemListPage> list(String responseId, InputItemListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InputItemListPage> list(String responseId, InputItemListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<InputItemListPage> list(InputItemListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<InputItemListPage> list(InputItemListParams params)
-
list
@MustBeClosed() HttpResponseFor<InputItemListPage> list(String responseId, RequestOptions requestOptions)
-
-
-
-