fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 422 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;
}>;
export type PaymentSettlStyle = (typeof PaymentSettlStyle)[keyof typeof PaymentSettlStyle];