fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
54 lines (53 loc) • 1.31 kB
TypeScript
/**
* Identifies the settlement payment method.
* - Tag: 492
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentMethod: Readonly<{
/** CREST */
readonly CREST: 1;
/** NSCC */
readonly NSCC: 2;
/** Euroclear */
readonly Euroclear: 3;
/** Clearstream */
readonly Clearstream: 4;
/** Cheque */
readonly Cheque: 5;
/** Telegraphic Transfer */
readonly TelegraphicTransfer: 6;
/** Fed Wire */
readonly FedWire: 7;
/** Debit Card */
readonly DebitCard: 8;
/** Direct Debit (BECS) */
readonly DirectDebit: 9;
/** Direct Credit (BECS) */
readonly DirectCredit: 10;
/** Credit Card */
readonly CreditCard: 11;
/** ACH Debit */
readonly ACHDebit: 12;
/** ACH Credit */
readonly ACHCredit: 13;
/** BPAY */
readonly BPAY: 14;
/** High Value Clearing System (HVACS) */
readonly HighValueClearingSystem: 15;
/** CHIPS */
readonly CHIPS: 16;
/** S.W.I.F.T. */
readonly SWIFT: 17;
/** CHAPS */
readonly CHAPS: 18;
/** SIC */
readonly SIC: 19;
/** euroSIC */
readonly EuroSIC: 20;
/** Other */
readonly Other: 999;
}>;
export type PaymentMethod = (typeof PaymentMethod)[keyof typeof PaymentMethod];