fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 597 B
TypeScript
/**
* Type of message encoding (non-ASCII (non-English) characters) used in a message’s "Encoded" fields.
* - Tag: 347
* - FIX Specification type: String
* - FIX Specification version: FIX44
* - Mapped type: string
* @readonly
* @public
*/
export declare const MessageEncoding: Readonly<{
/** JIS */
readonly ISO2022JP: "ISO-2022-JP";
/** EUC */
readonly EUCJP: "EUC-JP";
/** for using SJIS */
readonly ShiftJIS: "Shift_JIS";
/** Unicode */
readonly UTF8: "UTF-8";
}>;
export type MessageEncoding = (typeof MessageEncoding)[keyof typeof MessageEncoding];