fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
24 lines (23 loc) • 640 B
TypeScript
/**
* Used to identify the source of the Account (1) code. This is especially useful if the account is a new account that the Respondent may not have setup yet in their system.
* - Tag: 660
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const AcctIDSource: Readonly<{
/** BIC */
readonly BIC: 1;
/** SID Code */
readonly SIDCode: 2;
/** TFM (GSPTA) */
readonly TFM: 3;
/** OMGEO (Alert ID) */
readonly OMGEO: 4;
/** DTCC Code */
readonly DTCCCode: 5;
readonly SPSAID: 6;
/** Other (custom or proprietary) */
readonly Other: 99;
}>;