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
-
-
Method Detail
-
withOptions
abstract ExportService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
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(String exportId)
Returns a raw HTTP response for
get /exports/{export_id}, but is otherwise the same as ExportService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Export> retrieve(String exportId, ExportRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Export> retrieve(String exportId, ExportRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Export> retrieve(ExportRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Export> retrieve(ExportRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<Export> retrieve(String exportId, 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)
-
-
-
-