fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 418 B
TypeScript
/**
* Used to indicate whether a delivery instruction is used for securities or cash settlement.
* - Tag: 787
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const DlvyInstType: Readonly<{
/** Cash */
readonly Cash: "C";
/** Securities */
readonly Securities: "S";
}>;
export type DlvyInstType = (typeof DlvyInstType)[keyof typeof DlvyInstType];