fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 330 B
TypeScript
/**
* Payment settlement style.
* - Tag: 40227
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentSettlStyle: Readonly<{
/** Standard */
readonly Standard: 0;
/** Net */
readonly Net: 1;
/** Standard and net */
readonly StandardfNet: 2;
}>;