| | 1 | | using System.Collections.Generic; |
| | 2 | |
|
| | 3 | | namespace Microsoft.Azure.ApplicationInsights.Query.Models |
| | 4 | | { |
| | 5 | | /// <summary> |
| | 6 | | /// A segmented metric result data. |
| | 7 | | /// </summary> |
| | 8 | | public class MetricsSegmentedResult |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Gets start time of the metric. |
| | 12 | | /// </summary> |
| 0 | 13 | | public System.DateTime? Start { get; internal set; } |
| | 14 | |
|
| | 15 | | /// <summary> |
| | 16 | | /// Gets start time of the metric. |
| | 17 | | /// </summary> |
| 0 | 18 | | public System.DateTime? End { get; internal set; } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// The segments of data |
| | 22 | | /// </summary> |
| 0 | 23 | | public IList<IMetricsBaseSegmentInfo> Segments { get; internal set; } |
| | 24 | | } |
| | 25 | | } |