Skip to content

Commit

Permalink
Fix typo and add missing item in the PurchasingTimeFrame enum
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Feb 18, 2022
1 parent 5da44a2 commit 32049f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Source/ZoomNet/Models/PurchasingTimeFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ public enum PurchasingTimeFrame

/// <summary>More than 6 months</summary>
[EnumMember(Value = "More than 6 months")]
Nore_than_6_months,
More_than_6_months,

/// <summary>More than 6 months</summary>
[EnumMember(Value = "No timeframe")]
No_timeframe,
}
}
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/IMeetings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public interface IMeetings
/// <returns>
/// A <see cref="RegistrantInfo" />.
/// </returns>
Task<RegistrantInfo> 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<RegistrationAnswer> questionAnswers = null, Language? language = null, bool autoApprove = false, string occurrenceId = null, CancellationToken cancellationToken = default);
Task<RegistrantInfo> 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<RegistrationAnswer> questionAnswers = null, Language? language = null, bool autoApprove = false, string occurrenceId = null, CancellationToken cancellationToken = default);

/// <summary>
/// Delete a meeting registrant.
Expand Down

0 comments on commit 32049f9

Please sign in to comment.