Interface OrderFulfillmentServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface OrderFulfillmentServiceAsync.WithRawResponseA view of OrderFulfillmentServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract OrderFulfillmentServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
CompletableFuture<HttpResponseFor<Fulfillment>> retrieve(String orderFulfillmentId, OrderFulfillmentRetrieveParams params)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/order_fulfillments/{order_fulfillment_id}, but is otherwise the same as OrderFulfillmentServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<Fulfillment>> retrieve(String orderFulfillmentId, OrderFulfillmentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<Fulfillment>> retrieve(OrderFulfillmentRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<Fulfillment>> retrieve(OrderFulfillmentRetrieveParams params, RequestOptions requestOptions)
-
query
CompletableFuture<HttpResponseFor<List<Fulfillment>>> query(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/order_fulfillments, but is otherwise the same as OrderFulfillmentServiceAsync.query.
-
query
CompletableFuture<HttpResponseFor<List<Fulfillment>>> query(String accountId, OrderFulfillmentQueryParams params, RequestOptions requestOptions)
-
query
CompletableFuture<HttpResponseFor<List<Fulfillment>>> query(String accountId, OrderFulfillmentQueryParams params)
-
query
abstract CompletableFuture<HttpResponseFor<List<Fulfillment>>> query(OrderFulfillmentQueryParams params, RequestOptions requestOptions)
-
query
CompletableFuture<HttpResponseFor<List<Fulfillment>>> query(OrderFulfillmentQueryParams params)
-
query
CompletableFuture<HttpResponseFor<List<Fulfillment>>> query(String accountId, RequestOptions requestOptions)
-
-
-
-