fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
33 lines (32 loc) • 1.15 kB
TypeScript
/**
* CollInquiryResult
* - Tag: 946
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CollInquiryResult: Readonly<{
/** Successful (default) */
readonly Successful: 0;
/** Invalid or unknown instrument */
readonly InvalidOrUnknownInstrument: 1;
/** Invalid or unknown collateral type */
readonly InvalidOrUnknownCollateralType: 2;
/** Invalid Parties */
readonly InvalidParties: 3;
/** Invalid Transport Type requested */
readonly InvalidTransportTypeRequested: 4;
/** Invalid Destination requested */
readonly InvalidDestinationRequested: 5;
/** No collateral found for the trade specified */
readonly NoCollateralFoundForTheTradeSpecified: 6;
/** No collateral found for the order specified */
readonly NoCollateralFoundForTheOrderSpecified: 7;
/** Collateral inquiry type not supported */
readonly CollateralInquiryTypeNotSupported: 8;
/** Unauthorized for collateral inquiry */
readonly UnauthorizedForCollateralInquiry: 9;
/** Other (further information in Text (58) field) */
readonly Other: 99;
}>;