Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Az.IotHub XML Comments #18433

Merged
merged 2 commits into from
Jun 13, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/IotHub/IotHub/IotHub/DataPlane/Models/PSDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,25 @@ public class PSDevice
public PSDeviceStatus Status { get; set; }

/// <summary>
/// Reason, if any, for the Device to be in specified <see cref="Status"/>
/// Reason, if any, for the Device to be in specified <see cref="StatusReason"/>
/// </summary>
[JsonProperty(PropertyName = "statusReason")]
public string StatusReason { get; set; }

/// <summary>
/// Time when the <see cref="ConnectionState"/> was last updated
/// Time when the <see cref="ConnectionStateUpdatedTime"/> was last updated
/// </summary>
[JsonProperty(PropertyName = "connectionStateUpdatedTime")]
public DateTime ConnectionStateUpdatedTime { get; set; }

/// <summary>
/// Time when the <see cref="Status"/> was last updated
/// Time when the <see cref="StatusUpdatedTime"/> was last updated
/// </summary>
[JsonProperty(PropertyName = "statusUpdatedTime")]
public DateTime StatusUpdatedTime { get; set; }

/// <summary>
/// Time when the <see cref="Device"/> was last active
/// Time when the <see cref="LastActivityTime"/> was last active
/// </summary>
[JsonProperty(PropertyName = "lastActivityTime")]
public DateTime LastActivityTime { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion src/IotHub/IotHub/IotHub/DataPlane/Models/PSDeviceTwin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class PSDeviceTwin
public DateTime StatusUpdatedTime { get; set; }

/// <summary>
/// Time when the <see cref="Device"/> was last active.
/// Time when the <see cref="LastActivityTime"/> was last active.
/// </summary>
[JsonProperty(DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate)]
public DateTime LastActivityTime { get; set; }
Expand Down
4 changes: 2 additions & 2 deletions src/IotHub/IotHub/IotHub/DataPlane/Models/PSModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ public class PSModule
public PSDeviceConnectionState ConnectionState { get; set; }

/// <summary>
/// Time when the <see cref="ConnectionState"/> was last updated
/// Time when the <see cref="ConnectionStateUpdatedTime"/> was last updated
/// </summary>
[JsonProperty(PropertyName = "connectionStateUpdatedTime")]
public DateTime ConnectionStateUpdatedTime { get; set; }

/// <summary>
/// Time when the <see cref="Device"/> was last active
/// Time when the <see cref="LastActivityTime"/> was last active
/// </summary>
[JsonProperty(PropertyName = "lastActivityTime")]
public DateTime LastActivityTime { get; set; }
Expand Down