Interface OrderFulfillmentService.WithRawResponse
-
- All Implemented Interfaces:
public interface OrderFulfillmentService.WithRawResponseA view of OrderFulfillmentService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract OrderFulfillmentService.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
@MustBeClosed() 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 OrderFulfillmentService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Fulfillment> retrieve(String orderFulfillmentId, OrderFulfillmentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Fulfillment> retrieve(OrderFulfillmentRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Fulfillment> retrieve(OrderFulfillmentRetrieveParams params, RequestOptions requestOptions)
-
query
@MustBeClosed() 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 OrderFulfillmentService.query.
-
query
@MustBeClosed() HttpResponseFor<List<Fulfillment>> query(String accountId, OrderFulfillmentQueryParams params, RequestOptions requestOptions)
-
query
@MustBeClosed() HttpResponseFor<List<Fulfillment>> query(String accountId, OrderFulfillmentQueryParams params)
-
query
@MustBeClosed() abstract HttpResponseFor<List<Fulfillment>> query(OrderFulfillmentQueryParams params, RequestOptions requestOptions)
-
query
@MustBeClosed() HttpResponseFor<List<Fulfillment>> query(OrderFulfillmentQueryParams params)
-
query
@MustBeClosed() HttpResponseFor<List<Fulfillment>> query(String accountId, RequestOptions requestOptions)
-
-
-
-