| | 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> Properties JSON element. </summary> |
| | 11 | | public partial class DeviceTwinInfoProperties |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of DeviceTwinInfoProperties. </summary> |
| 0 | 14 | | internal DeviceTwinInfoProperties() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of DeviceTwinInfoProperties. </summary> |
| | 19 | | /// <param name="desired"> A portion of the properties that can be written only by the application back-end, and |
| | 20 | | /// <param name="reported"> A portion of the properties that can be written only by the device, and read by the |
| 4 | 21 | | internal DeviceTwinInfoProperties(DeviceTwinProperties desired, DeviceTwinProperties reported) |
| | 22 | | { |
| 4 | 23 | | Desired = desired; |
| 4 | 24 | | Reported = reported; |
| 4 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> A portion of the properties that can be written only by the application back-end, and read by the |
| 0 | 28 | | public DeviceTwinProperties Desired { get; } |
| | 29 | | /// <summary> A portion of the properties that can be written only by the device, and read by the application ba |
| 0 | 30 | | public DeviceTwinProperties Reported { get; } |
| | 31 | | } |
| | 32 | | } |