UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser

103 lines (102 loc) 2.73 kB
/** * The subcategory description of the asset class. * - Tag: 1939 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const AssetSubClass: Readonly<{ /** Single currency */ readonly SingleCurrency: 1; /** Cross currency */ readonly CrossCurrency: 2; /** Basket [for multi-currency] */ readonly Basket: 3; /** Single name */ readonly SingleName: 4; /** Credit index */ readonly CreditIndex: 5; /** Index tranche */ readonly IndexTranche: 6; /** Credit basket */ readonly CreditBasket: 7; /** Exotic */ readonly Exotic: 8; /** Common */ readonly Common: 9; /** Preferred */ readonly Preferred: 10; /** Equity index */ readonly EquityIndex: 11; /** Equity basket */ readonly EquityBasket: 12; /** Metals */ readonly Metals: 13; /** Bullion */ readonly Bullion: 14; /** Energy */ readonly Energy: 15; /** Commodity index */ readonly CommodityIndex: 16; /** Agricultural */ readonly Agricultural: 17; /** Environmental */ readonly Environmental: 18; /** Freight */ readonly Freight: 19; /** Government */ readonly Government: 20; /** Agency */ readonly Agency: 21; /** Corporate */ readonly Corporate: 22; /** Financing */ readonly Financing: 23; /** Money market */ readonly MoneyMarket: 24; /** Mortgage */ readonly Mortgage: 25; /** Municipal */ readonly Municipal: 26; /** Mutual fund */ readonly MutualFund: 27; /** Collective investment vehicle */ readonly CollectiveInvestmentVehicle: 28; readonly InvestmentProgram: 29; readonly SpecializedAccountProgram: 30; /** Term loan */ readonly TermLoan: 31; /** Bridge loan */ readonly BridgeLoan: 32; /** Letter of credit */ readonly LetterOfCredit: 33; /** Dividend index */ readonly DividendIndex: 34; /** Stock dividend */ readonly StockDividend: 35; /** Exchange traded fund */ readonly ExchangeTradedFund: 36; /** Volatility index */ readonly VolatilityIndex: 37; /** FX cross rates */ readonly FXCrossRates: 38; /** FX emerging markets */ readonly FXEmergingMarkets: 39; /** FX Majors */ readonly FXMajors: 40; /** Fertilizer */ readonly Fertilizer: 41; /** Industrial product */ readonly IndustrialProduct: 42; /** Inflation */ readonly Inflation: 43; /** Paper */ readonly Paper: 44; /** Polypropylene */ readonly Polypropylene: 45; /** Official economic statistics */ readonly OfficialEconomicStatistics: 46; readonly OtherC10: 47; readonly Other: 48; }>;