/* * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals. * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ using System.Collections.Generic; using Newtonsoft.Json; namespace QuantConnect.Securities.FutureOption.Api { /// /// Product slate API call root response /// public class CMEProductSlateV2ListResponse { /// /// Products matching the search criteria /// [JsonProperty("products")] public List Products { get; private set; } } /// /// Product entry describing the asset matching the search criteria /// public class CMEProductSlateV2ListEntry { /// /// CME ID for the asset /// [JsonProperty("id")] public int Id { get; private set; } /// /// Name of the product (e.g. E-mini NASDAQ futures) /// [JsonProperty("name")] public string Name { get; private set; } /// /// Clearing code /// [JsonProperty("clearing")] public string Clearing { get; private set; } /// /// GLOBEX ticker /// [JsonProperty("globex")] public string Globex { get; private set; } /// /// Is traded in the GLOBEX venue /// [JsonProperty("globexTraded")] public bool GlobexTraded { get; private set; } /// /// Venues this asset trades on /// [JsonProperty("venues")] public string Venues { get; private set; } /// /// Asset type this product is cleared as (i.e. "Futures", "Options") /// [JsonProperty("cleared")] public string Cleared { get; private set; } /// /// Exchange the asset trades on (i.e. CME, NYMEX, COMEX, CBOT) /// [JsonProperty("exch")] public string Exchange { get; private set; } /// /// Asset class group ID - describes group of asset class (e.g. equities, agriculture, etc.) /// [JsonProperty("groupId")] public int GroupId { get; private set; } /// /// More specific ID describing product /// [JsonProperty("subGroupId")] public int subGroupId { get; private set; } } }