| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Network.Models |
| | 11 | | { |
| | 12 | | /// <summary> Details on latency for a time series. </summary> |
| | 13 | | public partial class AzureReachabilityReportLatencyInfo |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of AzureReachabilityReportLatencyInfo. </summary> |
| 0 | 16 | | internal AzureReachabilityReportLatencyInfo() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of AzureReachabilityReportLatencyInfo. </summary> |
| | 21 | | /// <param name="timeStamp"> The time stamp. </param> |
| | 22 | | /// <param name="score"> The relative latency score between 1 and 100, higher values indicating a faster connect |
| 0 | 23 | | internal AzureReachabilityReportLatencyInfo(DateTimeOffset? timeStamp, int? score) |
| | 24 | | { |
| 0 | 25 | | TimeStamp = timeStamp; |
| 0 | 26 | | Score = score; |
| 0 | 27 | | } |
| | 28 | |
|
| | 29 | | /// <summary> The time stamp. </summary> |
| 0 | 30 | | public DateTimeOffset? TimeStamp { get; } |
| | 31 | | /// <summary> The relative latency score between 1 and 100, higher values indicating a faster connection. </summ |
| 0 | 32 | | public int? Score { get; } |
| | 33 | | } |
| | 34 | | } |