fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
38 lines (37 loc) • 1.03 kB
TypeScript
/**
* Identifies the payment method for a (fractional) distribution. Used for CIV.
* - Tag: 477
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DistribPaymentMethod: 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;
/** Direct Credit (BECS, BACS) */
readonly DirectCredit: 8;
/** ACH Credit */
readonly ACHCredit: 9;
/** BPAY */
readonly BPAY: 10;
/** High Value Clearing System HVACS */
readonly HighValueClearingSystemHVACS: 11;
/** Reinvest In Fund */
readonly ReinvestInFund: 12;
/** Other */
readonly Other: 999;
}>;
export type DistribPaymentMethod = (typeof DistribPaymentMethod)[keyof typeof DistribPaymentMethod];