fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
18 lines (17 loc) • 424 B
TypeScript
/**
* Specifies a suitable settlement sub-method for a given settlement method.
* - Tag: 2579
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const SettlSubMethod: Readonly<{
readonly Shares: 1;
readonly Derivatives: 2;
readonly PaymentVsPayment: 3;
readonly Notional: 4;
readonly Cascade: 5;
readonly Repurchase: 6;
readonly Other: 99;
}>;