fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
20 lines (19 loc) • 511 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';
}>;