| | 1 | | using System.Collections.Generic; |
| | 2 | |
|
| | 3 | | namespace Microsoft.Azure.ApplicationInsights.Query.Models |
| | 4 | | { |
| | 5 | | /// <summary> |
| | 6 | | /// An intervaled and segmented metric result. |
| | 7 | | /// </summary> |
| | 8 | | public class MetricsIntervaledSegmentedResult |
| | 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 interval used to segment the data. |
| | 22 | | /// </summary> |
| 0 | 23 | | public System.TimeSpan? Interval { get; internal set; } |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// The intervals of data. |
| | 27 | | /// </summary> |
| 0 | 28 | | public IList<MetricsSegmentedIntervalData> Intervals { get; internal set; } |
| | 29 | | } |
| | 30 | | } |