/// <summary>
/// Personal watchlist row pushed on PersonalInstrumentsListUpdated
/// </summary>
public class PersonalInstrumentModel
{
public string Id { get; set; }
public string Type { get; set; }
public string Symbol { get; set; }
public string IconName { get; set; }
public string Description { get; set; }
}| PersonalInstrumentModel | 类型 | 描述 | 示例值 |
|---|---|---|---|
| Id | string | "42" | |
| Type | string | "Forex" | |
| Symbol | string | "EURUSD" | |
| IconName | string | "eurusd" | |
| Description | string | "Euro / US Dollar" |
示例 JSON
{
"id": "42",
"type": "Forex",
"symbol": "EURUSD",
"iconName": "eurusd",
"description": "Euro / US Dollar"
}