fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 398 B
TypeScript
/**
* Used to describe the ownership of the position.
* - Tag: 1834
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PositionCapacity: Readonly<{
/** Principal */
readonly Principal: 0;
/** Agent */
readonly Agent: 1;
/** Customer */
readonly Customer: 2;
/** Counterparty */
readonly Counterparty: 3;
}>;