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 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
-
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)
-
-
-
-