fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 394 B
TypeScript
/**
* conveys how the collateral should be/has been applied
* - Tag: 1043
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CollApplType: Readonly<{
/** Specific Deposit */
readonly SpecificDeposit: 0;
/** General */
readonly General: 1;
}>;
export type CollApplType = (typeof CollApplType)[keyof typeof CollApplType];