fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 435 B
TypeScript
/**
* Type of MarginRequirementReport.
* - Tag: 1638
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const MarginReqmtRptType: Readonly<{
/** Summary */
readonly Summary: 0;
/** Detail */
readonly Detail: 1;
/** Excess/Deficit */
readonly ExcessDeficit: 2;
}>;
export type MarginReqmtRptType = (typeof MarginReqmtRptType)[keyof typeof MarginReqmtRptType];