fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 736 B
TypeScript
/**
* Used to identify the calculation agent. The calculation agent may be identified in ProvisionCalculationAgent(40098) or in the ProvisionParties component.
* - Tag: 40098
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ProvisionCalculationAgent: Readonly<{
/** Exercising party */
readonly ExercisingParty: 0;
/** Non-exercising party */
readonly NonExercisingParty: 1;
/** As specified in the master agreement */
readonly MasterAgreeent: 2;
/** As specified in the standard terms supplement */
readonly Supplement: 3;
}>;
export type ProvisionCalculationAgent = (typeof ProvisionCalculationAgent)[keyof typeof ProvisionCalculationAgent];