Interface DocumentService.WithRawResponse
-
- All Implemented Interfaces:
public interface DocumentService.WithRawResponseA view of DocumentService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract HttpResponseFor<Document>retrieve(DocumentRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /documents/{document_id}, but is otherwise the same as DocumentService.retrieve.abstract HttpResponseFor<Document>retrieve(DocumentRetrieveParams params)Returns a raw HTTP response for get /documents/{document_id}, but is otherwise the same as DocumentService.retrieve.abstract HttpResponseFor<DocumentListPage>list(DocumentListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /documents, but is otherwise the same as DocumentService.list.abstract HttpResponseFor<DocumentListPage>list(DocumentListParams params)Returns a raw HTTP response for get /documents, but is otherwise the same as DocumentService.list.abstract HttpResponseFor<DocumentListPage>list()Returns a raw HTTP response for get /documents, but is otherwise the same as DocumentService.list.HttpResponseFor<DocumentListPage>list(RequestOptions requestOptions)Returns a raw HTTP response for get /documents, but is otherwise the same as DocumentService.list.-
-
Method Detail
-
retrieve
abstract HttpResponseFor<Document> retrieve(DocumentRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /documents/{document_id}, but is otherwise the same as DocumentService.retrieve.
-
retrieve
abstract HttpResponseFor<Document> retrieve(DocumentRetrieveParams params)
Returns a raw HTTP response for
get /documents/{document_id}, but is otherwise the same as DocumentService.retrieve.
-
list
abstract HttpResponseFor<DocumentListPage> list(DocumentListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /documents, but is otherwise the same as DocumentService.list.
-
list
abstract HttpResponseFor<DocumentListPage> list(DocumentListParams params)
Returns a raw HTTP response for
get /documents, but is otherwise the same as DocumentService.list.
-
list
abstract HttpResponseFor<DocumentListPage> list()
Returns a raw HTTP response for
get /documents, but is otherwise the same as DocumentService.list.
-
list
HttpResponseFor<DocumentListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /documents, but is otherwise the same as DocumentService.list.
-
-
-
-