fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
34 lines (33 loc) • 839 B
TypeScript
/**
* SettlType
* - Tag: 63
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const SettlType: Readonly<{
/** Regular / FX Spot settlement (T+1 or T+2 depending on currency) */
readonly Regular: '0';
/** Cash (TOD / T+0) */
readonly Cash: '1';
/** Next Day (TOM / T+1) */
readonly NextDay: '2';
/** T+2 */
readonly TPlus2: '3';
/** T+3 */
readonly TPlus3: '4';
/** T+4 */
readonly TPlus4: '5';
/** Future */
readonly Future: '6';
/** When And If Issued */
readonly WhenAndIfIssued: '7';
/** Sellers Option */
readonly SellersOption: '8';
/** T+5 */
readonly TPlus5: '9';
readonly BrokenDate: 'B';
/** FX Spot Next settlement (Spot+1, aka next day) */
readonly FXSpotNextSettlement: 'C';
}>;