Skip to content

Commit

Permalink
Added missing user ID field in Device Credentials class (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
kailash-b authored Jan 20, 2025
2 parents 68e0af2 + 2375173 commit c8cff0f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Auth0.ManagementApi/Models/DeviceCredential.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,11 @@ public class DeviceCredential : DeviceCredentialBase
/// </summary>
[JsonProperty("id")]
public string Id { get; set; }

/// <summary>
/// Gets or sets the device credential's user identifier.
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}

0 comments on commit c8cff0f

Please sign in to comment.