/// <summary>
 /// Initializes a new instance of the InstanceHit class.
 /// </summary>
 /// <param name="timeSeriesId">Time series ID of the time series
 /// instance that matched the search request.</param>
 /// <param name="name">Name of the time series instance that matched
 /// the search request. May be null.</param>
 /// <param name="typeId">Represents the type that time series instance
 /// which matched the search request belongs to. Never null.</param>
 /// <param name="hierarchyIds">List of time series hierarchy IDs that
 /// time series instance which matched the search request belongs to.
 /// Cannot be used to lookup hierarchies. May be null.</param>
 /// <param name="highlights">Highlighted text of time series instance
 /// to be displayed to the user. Highlighting inserts &lt;hit&gt; and
 /// &lt;/hit&gt; tags in the portions of text that matched the search
 /// string. Do not use any of the highlighted properties to do further
 /// API calls.</param>
 public InstanceHit(IList <object> timeSeriesId = default(IList <object>), string name = default(string), string typeId = default(string), IList <string> hierarchyIds = default(IList <string>), InstanceHitHighlights highlights = default(InstanceHitHighlights))
 {
     TimeSeriesId = timeSeriesId;
     Name         = name;
     TypeId       = typeId;
     HierarchyIds = hierarchyIds;
     Highlights   = highlights;
     CustomInit();
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the InstanceHit class.
 /// </summary>
 /// <param name="timeSeriesId">Time series ID of the time series
 /// instance that matched the search request.</param>
 /// <param name="highlights">Highlighted text of time series instance
 /// to be displayed to the user. Highlighting inserts &lt;hit&gt; and
 /// &lt;/hit&gt; tags in the portions of text that matched the search
 /// string. Do not use any of the highlighted properties to do further
 /// API calls.</param>
 public InstanceHit(IList <object> timeSeriesId = default(IList <object>), InstanceHitHighlights highlights = default(InstanceHitHighlights))
 {
     TimeSeriesId = timeSeriesId;
     Highlights   = highlights;
     CustomInit();
 }