@reactivemarkets/switchboard-sdk
Version:
SDK for the Reactive Markets Switchboard
20 lines (19 loc) • 745 B
TypeScript
import { SecurityType } from "@reactivemarkets/switchboard-api";
import { IOrderCancelRejectBuilder } from "./iOrderCancelRejectBuilder";
export declare class OrderCancelRejectBuilder implements IOrderCancelRejectBuilder {
#private;
account(account: string): this;
clOrderId(clOrderId?: string): this;
code(code?: number): this;
origClOrderId(origClOrderId?: string): this;
orderId(orderId?: string): this;
price(price?: number): this;
qty(qty?: number): this;
securityType(securityType: SecurityType): this;
sendingTime(sendingTime?: bigint): this;
symbol(symbol: string): this;
tenor(tenor: string): this;
text(text: string): this;
venue(venue: string): this;
build(): Uint8Array;
}