fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 791 B
TypeScript
/**
* The notifying party is the party that notifies the other party when a credit event has occurred by means of a credit event notice. If more than one party is referenced as being the notifying party then either party may notify the other of a credit event occurring.
* - Tag: 2134
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ComplexEventCreditEventNotifyingParty: Readonly<{
/** Seller notifies */
readonly SellerNotifies: 0;
/** Buyer notifies */
readonly BuyerNotifies: 1;
/** Seller or buyer notifies */
readonly SellerOrBuyerNotifies: 2;
}>;
export type ComplexEventCreditEventNotifyingParty = (typeof ComplexEventCreditEventNotifyingParty)[keyof typeof ComplexEventCreditEventNotifyingParty];