| | 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.Messaging.EventGrid.SystemEvents |
| | 9 | | { |
| | 10 | | /// <summary> A portion of the properties that can be written only by the application back-end, and read by the devi |
| | 11 | | public partial class DeviceTwinProperties |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of DeviceTwinProperties. </summary> |
| 0 | 14 | | internal DeviceTwinProperties() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of DeviceTwinProperties. </summary> |
| | 19 | | /// <param name="metadata"> Metadata information for the properties JSON document. </param> |
| | 20 | | /// <param name="version"> Version of device twin properties. </param> |
| 8 | 21 | | internal DeviceTwinProperties(DeviceTwinMetadata metadata, float? version) |
| | 22 | | { |
| 8 | 23 | | Metadata = metadata; |
| 8 | 24 | | Version = version; |
| 8 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> Metadata information for the properties JSON document. </summary> |
| 0 | 28 | | public DeviceTwinMetadata Metadata { get; } |
| | 29 | | /// <summary> Version of device twin properties. </summary> |
| 0 | 30 | | public float? Version { get; } |
| | 31 | | } |
| | 32 | | } |