fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
22 lines (21 loc) • 647 B
TypeScript
/**
* Result of Request for Positions.
* - Tag: 728
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PosReqResult: Readonly<{
/** Valid request */
readonly ValidRequest: 0;
/** Invalid or unsupported request */
readonly InvalidOrUnsupportedRequest: 1;
/** No positions found that match criteria */
readonly NoPositionsFoundThatMatchCriteria: 2;
/** Not authorized to request positions */
readonly NotAuthorizedToRequestPositions: 3;
/** Request for position not supported */
readonly RequestForPositionNotSupported: 4;
readonly Other: 99;
}>;