From c79703a43098c7787697ddae95573e8c8bdcf4b6 Mon Sep 17 00:00:00 2001 From: Jericho Date: Mon, 1 Jun 2020 09:36:06 -0400 Subject: [PATCH] Fix the json property name on Registrant.Status --- Source/ZoomNet/Models/Registrant.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ZoomNet/Models/Registrant.cs b/Source/ZoomNet/Models/Registrant.cs index 99e5e6f6..d1782cf1 100644 --- a/Source/ZoomNet/Models/Registrant.cs +++ b/Source/ZoomNet/Models/Registrant.cs @@ -123,7 +123,7 @@ public class Registrant /// /// Gets or sets the status. /// - [JsonProperty(PropertyName = "comments")] + [JsonProperty(PropertyName = "status")] public RegistrantStatus Status { get; set; } ///