Interface OrderFulfillmentService
-
- All Implemented Interfaces:
public interface OrderFulfillmentServiceOrdersrepresent the buying and selling of assets under anAccount.For
Accountsusing self-custodiedWallets,Ordersare created and fulfilled by making calls to Dinari's smart contracts, or using the Proxied Orders methods.For
Accountsusing managedWallets,Ordersare created and fulfilled by using theManaged Ordersmethods, which then create the corresponding transactions on the blockchain.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceOrderFulfillmentService.WithRawResponseA view of OrderFulfillmentService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract OrderFulfillmentService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract OrderFulfillmentService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
Fulfillment retrieve(String orderFulfillmentId, OrderFulfillmentRetrieveParams params)
Get a specific
OrderFulfillmentby its ID.
-
retrieve
Fulfillment retrieve(String orderFulfillmentId, OrderFulfillmentRetrieveParams params, RequestOptions requestOptions)
-
retrieve
Fulfillment retrieve(OrderFulfillmentRetrieveParams params)
-
retrieve
abstract Fulfillment retrieve(OrderFulfillmentRetrieveParams params, RequestOptions requestOptions)
-
query
List<Fulfillment> query(String accountId)
Query
OrderFulfillmentsunder theAccount.
-
query
List<Fulfillment> query(String accountId, OrderFulfillmentQueryParams params, RequestOptions requestOptions)
-
query
List<Fulfillment> query(String accountId, OrderFulfillmentQueryParams params)
-
query
abstract List<Fulfillment> query(OrderFulfillmentQueryParams params, RequestOptions requestOptions)
-
query
List<Fulfillment> query(OrderFulfillmentQueryParams params)
-
query
List<Fulfillment> query(String accountId, RequestOptions requestOptions)
-
-
-
-