| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | namespace Azure.Iot.Hub.Service.Models |
| | 9 | | { |
| | 10 | | /// <summary> The ServiceStatistics. </summary> |
| | 11 | | public partial class ServiceStatistics |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of ServiceStatistics. </summary> |
| 0 | 14 | | internal ServiceStatistics() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of ServiceStatistics. </summary> |
| | 19 | | /// <param name="connectedDeviceCount"> The number of currently connected devices. </param> |
| 4 | 20 | | internal ServiceStatistics(long? connectedDeviceCount) |
| | 21 | | { |
| 4 | 22 | | ConnectedDeviceCount = connectedDeviceCount; |
| 4 | 23 | | } |
| | 24 | |
|
| | 25 | | /// <summary> The number of currently connected devices. </summary> |
| 4 | 26 | | public long? ConnectedDeviceCount { get; } |
| | 27 | | } |
| | 28 | | } |