Interface ExportService.WithRawResponse
-
- All Implemented Interfaces:
public interface ExportService.WithRawResponseA view of ExportService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<Export>create(ExportCreateParams params)Returns a raw HTTP response for post /exports, but is otherwise the same as ExportService.create.abstract HttpResponseFor<Export>create(ExportCreateParams params, RequestOptions requestOptions)HttpResponseFor<Export>retrieve(ExportRetrieveParams params)Returns a raw HTTP response for get /exports/{export_id}, but is otherwise the same as ExportService.retrieve.abstract HttpResponseFor<Export>retrieve(ExportRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<ExportListPage>list()Returns a raw HTTP response for get /exports, but is otherwise the same as ExportService.list.abstract HttpResponseFor<ExportListPage>list(ExportListParams params, RequestOptions requestOptions)HttpResponseFor<ExportListPage>list(ExportListParams params)HttpResponseFor<ExportListPage>list(RequestOptions requestOptions)-
-
Method Detail
-
create
@MustBeClosed() HttpResponseFor<Export> create(ExportCreateParams params)
Returns a raw HTTP response for
post /exports, but is otherwise the same as ExportService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<Export> create(ExportCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Export> retrieve(ExportRetrieveParams params)
Returns a raw HTTP response for
get /exports/{export_id}, but is otherwise the same as ExportService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Export> retrieve(ExportRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ExportListPage> list()
Returns a raw HTTP response for
get /exports, but is otherwise the same as ExportService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<ExportListPage> list(ExportListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ExportListPage> list(ExportListParams params)
-
list
@MustBeClosed() HttpResponseFor<ExportListPage> list(RequestOptions requestOptions)
-
-
-
-