fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 360 B
TypeScript
/**
* The side of the party paying the payment.
* - Tag: 40214
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentPaySide: Readonly<{
/** Buy */
readonly Buy: 1;
/** Sell */
readonly Sell: 2;
}>;
export type PaymentPaySide = (typeof PaymentPaySide)[keyof typeof PaymentPaySide];