fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 387 B
TypeScript
/**
* Stub type.
* - Tag: 40873
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStubType: Readonly<{
/** Initial */
readonly Initial: 0;
/** Final */
readonly Final: 1;
/** Compounding initial */
readonly CompoundingInitial: 2;
/** Compounding final */
readonly CompoundingFinal: 3;
}>;