Skip to content

Commit

Permalink
(GH-176) Add the Meetings.GetRegistrantAsync method
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Feb 17, 2022
1 parent c02ee2f commit d280b63
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Source/ZoomNet/Resources/IMeetings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,17 @@ public interface IMeetings
/// </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);

/// <summary>
/// Retrieve a meeting registrant.
/// </summary>
/// <param name="meetingId">The meeting ID.</param>
/// <param name="registrantId">The registrant unique identifier.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>
/// The <see cref="Registrant"/>.
/// </returns>
Task<Registrant> GetRegistrantAsync(long meetingId, string registrantId, CancellationToken cancellationToken = default);

/// <summary>
/// Approve a registration for a meeting.
/// </summary>
Expand Down

0 comments on commit d280b63

Please sign in to comment.