fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 341 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';
}>;