fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
52 lines (51 loc) • 2.05 kB
TypeScript
/**
* Reason(s) why Registration Instructions has been rejected.
The reason may be further amplified in the RegistRejReasonCode field.
Possible values of reason code include:
* - Tag: 507
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const RegistRejReasonCode: Readonly<{
/** Invalid/unacceptable Account Type */
readonly InvalidAccountType: 1;
/** Invalid/unacceptable Tax Exempt Type */
readonly InvalidTaxExemptType: 2;
/** Invalid/unacceptable Ownership Type */
readonly InvalidOwnershipType: 3;
/** Invalid/unacceptable No Reg Details */
readonly NoRegDetails: 4;
/** Invalid/unacceptable Reg Seq No */
readonly InvalidRegSeqNo: 5;
/** Invalid/unacceptable Reg Details */
readonly InvalidRegDetails: 6;
/** Invalid/unacceptable Mailing Details */
readonly InvalidMailingDetails: 7;
/** Invalid/unacceptable Mailing Instructions */
readonly InvalidMailingInstructions: 8;
/** Invalid/unacceptable Investor ID */
readonly InvalidInvestorID: 9;
/** Invalid/unaceeptable Investor ID Source */
readonly InvalidInvestorIDSource: 10;
/** Invalid/unacceptable Date Of Birth */
readonly InvalidDateOfBirth: 11;
/** Invalid/unacceptable Investor Country Of Residence */
readonly InvalidCountry: 12;
/** Invalid/unacceptable No Distrib Instns */
readonly InvalidDistribInstns: 13;
/** Invalid/unacceptable Distrib Percentage */
readonly InvalidPercentage: 14;
/** Invalid/unacceptable Distrib Payment Method */
readonly InvalidPaymentMethod: 15;
/** Invalid/unacceptable Cash Distrib Agent Acct Name */
readonly InvalidAccountName: 16;
/** Invalid/unacceptable Cash Distrib Agent Code */
readonly InvalidAgentCode: 17;
/** Invalid/unacceptable Cash Distrib Agent Acct Num */
readonly InvalidAccountNum: 18;
/** Other */
readonly Other: 99;
}>;
export type RegistRejReasonCode = (typeof RegistRejReasonCode)[keyof typeof RegistRejReasonCode];