fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 418 B
TypeScript
/**
* Optional indication whether stub is shorter or longer than the regular swap period.
* - Tag: 40874
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStubLength: Readonly<{
/** Short */
readonly Short: 0;
/** Long */
readonly Long: 1;
}>;
export type PaymentStubLength = (typeof PaymentStubLength)[keyof typeof PaymentStubLength];