From 32049f96ff6c9696a4e087a5838eff6334898b33 Mon Sep 17 00:00:00 2001 From: jericho Date: Fri, 18 Feb 2022 13:09:55 -0500 Subject: [PATCH] Fix typo and add missing item in the PurchasingTimeFrame enum --- Source/ZoomNet/Models/PurchasingTimeFrame.cs | 6 +++++- Source/ZoomNet/Resources/IMeetings.cs | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Source/ZoomNet/Models/PurchasingTimeFrame.cs b/Source/ZoomNet/Models/PurchasingTimeFrame.cs index dc7260f2..032bbe42 100644 --- a/Source/ZoomNet/Models/PurchasingTimeFrame.cs +++ b/Source/ZoomNet/Models/PurchasingTimeFrame.cs @@ -24,6 +24,10 @@ public enum PurchasingTimeFrame /// More than 6 months [EnumMember(Value = "More than 6 months")] - Nore_than_6_months, + More_than_6_months, + + /// More than 6 months + [EnumMember(Value = "No timeframe")] + No_timeframe, } } diff --git a/Source/ZoomNet/Resources/IMeetings.cs b/Source/ZoomNet/Resources/IMeetings.cs index 49df6c77..d1d60c6e 100644 --- a/Source/ZoomNet/Resources/IMeetings.cs +++ b/Source/ZoomNet/Resources/IMeetings.cs @@ -248,7 +248,7 @@ public interface IMeetings /// /// A . /// - Task AddRegistrantAsync(long meetingId, string email, string firstName, string lastName, string address = null, string city = null, Country? country = null, string postalCode = null, string stateOrProvince = null, string phoneNumber = null, string industry = null, string organization = null, string jobTitle = null, string timeFrame = null, RoleInPurchaseProcess? role = null, NumberOfEmployees? employees = null, string comments = null, IEnumerable questionAnswers = null, Language? language = null, bool autoApprove = false, string occurrenceId = null, CancellationToken cancellationToken = default); + Task AddRegistrantAsync(long meetingId, string email, string firstName, string lastName, string address = null, string city = null, Country? country = null, string postalCode = null, string stateOrProvince = null, string phoneNumber = null, string industry = null, string organization = null, string jobTitle = null, PurchasingTimeFrame? timeFrame = null, RoleInPurchaseProcess? role = null, NumberOfEmployees? employees = null, string comments = null, IEnumerable questionAnswers = null, Language? language = null, bool autoApprove = false, string occurrenceId = null, CancellationToken cancellationToken = default); /// /// Delete a meeting registrant.