Interface BatchService.WithRawResponse
-
- All Implemented Interfaces:
public interface BatchService.WithRawResponse
A view of BatchService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract HttpResponseFor<Batch>
create(BatchCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /batches
, but is otherwise the same as BatchService.create.abstract HttpResponseFor<Batch>
create(BatchCreateParams params)
Returns a raw HTTP response for post /batches
, but is otherwise the same as BatchService.create.abstract HttpResponseFor<Batch>
retrieve(BatchRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /batches/{batch_id}
, but is otherwise the same as BatchService.retrieve.abstract HttpResponseFor<Batch>
retrieve(BatchRetrieveParams params)
Returns a raw HTTP response for get /batches/{batch_id}
, but is otherwise the same as BatchService.retrieve.abstract HttpResponseFor<BatchListPage>
list(BatchListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /batches
, but is otherwise the same as BatchService.list.abstract HttpResponseFor<BatchListPage>
list(BatchListParams params)
Returns a raw HTTP response for get /batches
, but is otherwise the same as BatchService.list.abstract HttpResponseFor<BatchListPage>
list()
Returns a raw HTTP response for get /batches
, but is otherwise the same as BatchService.list.HttpResponseFor<BatchListPage>
list(RequestOptions requestOptions)
Returns a raw HTTP response for get /batches
, but is otherwise the same as BatchService.list.abstract HttpResponseFor<Batch>
cancel(BatchCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /batches/{batch_id}/cancel
, but is otherwise the same as BatchService.cancel.abstract HttpResponseFor<Batch>
cancel(BatchCancelParams params)
Returns a raw HTTP response for post /batches/{batch_id}/cancel
, but is otherwise the same as BatchService.cancel.-
-
Method Detail
-
create
abstract HttpResponseFor<Batch> create(BatchCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /batches
, but is otherwise the same as BatchService.create.
-
create
abstract HttpResponseFor<Batch> create(BatchCreateParams params)
Returns a raw HTTP response for
post /batches
, but is otherwise the same as BatchService.create.
-
retrieve
abstract HttpResponseFor<Batch> retrieve(BatchRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /batches/{batch_id}
, but is otherwise the same as BatchService.retrieve.
-
retrieve
abstract HttpResponseFor<Batch> retrieve(BatchRetrieveParams params)
Returns a raw HTTP response for
get /batches/{batch_id}
, but is otherwise the same as BatchService.retrieve.
-
list
abstract HttpResponseFor<BatchListPage> list(BatchListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /batches
, but is otherwise the same as BatchService.list.
-
list
abstract HttpResponseFor<BatchListPage> list(BatchListParams params)
Returns a raw HTTP response for
get /batches
, but is otherwise the same as BatchService.list.
-
list
abstract HttpResponseFor<BatchListPage> list()
Returns a raw HTTP response for
get /batches
, but is otherwise the same as BatchService.list.
-
list
HttpResponseFor<BatchListPage> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /batches
, but is otherwise the same as BatchService.list.
-
cancel
abstract HttpResponseFor<Batch> cancel(BatchCancelParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /batches/{batch_id}/cancel
, but is otherwise the same as BatchService.cancel.
-
cancel
abstract HttpResponseFor<Batch> cancel(BatchCancelParams params)
Returns a raw HTTP response for
post /batches/{batch_id}/cancel
, but is otherwise the same as BatchService.cancel.
-
-
-
-