using System;
using System.ComponentModel;
namespace Krs.Ats.IBNet
{
///
/// Historical Bar Size Requests
///
[Serializable()]
public enum SecurityIdType : int
{
///
/// No Security Id Type
///
[Description("")] None,
///
/// Example: Apple: US0378331005
///
[Description("ISIN")] ISIN,
///
/// Example: Apple: 037833100
///
[Description("CUSIP")] CUSIP,
///
/// Consists of 6-AN + check digit. Example: BAE: 0263494
///
[Description("SEDOL")] SEDOL,
///
/// Consists of exchange-independent RIC Root and a suffix identifying the exchange. Example: AAPL.O for Apple on NASDAQ.
///
[Description("RIC")] RIC
}
}