@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
16 lines (15 loc) • 604 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.orderCancelReject = void 0;
const orderCancelRejectBuilder_1 = require("./orderCancelRejectBuilder");
/**
* The Order Cancel Reject message is sent by the maker in response to an
* Order Cancel Request or an Order Cancel / Replace Request message that
* cannot be fulfilled for business or technical reasons.
*
* ```ts
* const bytes = orderCancelReject().build();
* ```
*/
const orderCancelReject = () => new orderCancelRejectBuilder_1.OrderCancelRejectBuilder();
exports.orderCancelReject = orderCancelReject;