@glue42/bbg-market-data
Version:
A high-level API that wraps existing Glue42 Bloomberg Bridge Market Data interop methods. The API is based on the jBloomberg open source wrapper.
35 lines (34 loc) • 926 B
TypeScript
/**
* Defines what type of fields to be returned by a `FieldSearchRequest`.
*/
export declare enum FieldType {
/**
* Results include both streaming (real-time and delayed) and reference (static) fields.
*/
All = "All",
/**
* Results include fields that provide reference data (static).
*/
Static = "Static",
/**
* Results include fields that provide streaming data (real-time and delayed).
*/
RealTime = "RealTime"
}
/**
* Defines the language in which the descriptions are returned.
* @default English
*/
export declare enum Language {
English = "ENGLISH",
Japanese = "JAPANESE",
French = "FRENCH",
German = "GERMAN",
Spanish = "SPANISH",
Portuguese = "PORTUGUESE",
Italian = "ITALIAN",
ChineseTrad = "CHINESE_TRAD",
Korean = "KOREAN",
ChineseSimp = "CHINESE_SIMP",
Russian = "RUSSIAN"
}