Skip to content

Commit

Permalink
(GH-75) Modify the IWebinars interface to match recent change to the …
Browse files Browse the repository at this point in the history
…Webinars resource
  • Loading branch information
Jericho committed Jan 14, 2021
1 parent 8668962 commit 0b8b7d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/IWebinars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public interface IWebinars
/// The new webinar.
/// </returns>
/// <exception cref="System.Exception">Thrown when an exception occured while creating the webinar.</exception>
Task<Webinar> CreateScheduledWebinarAsync(string userId, string topic, string agenda, DateTime start, int duration, string password = null, WebinarSettings settings = null, IDictionary<string, string> trackingFields = null, CancellationToken cancellationToken = default);
Task<ScheduledWebinar> CreateScheduledWebinarAsync(string userId, string topic, string agenda, DateTime start, int duration, string password = null, WebinarSettings settings = null, IDictionary<string, string> trackingFields = null, CancellationToken cancellationToken = default);

/// <summary>
/// Creates a recurring webinar for a user.
Expand Down

0 comments on commit 0b8b7d5

Please sign in to comment.