Skip to content

Commit

Permalink
Merge branch 'release/0.18.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jericho committed Jan 26, 2021
2 parents 26b5783 + 023bc67 commit 8972b5d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/ZoomNet/Resources/Meetings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ public Task UpdateMeetingOccurrenceAsync(long meetingId, string occurrenceId, st
public Task UpdateScheduledMeetingAsync(long meetingId, string userId = null, string topic = null, string agenda = null, DateTime? start = null, int? duration = null, string password = null, MeetingSettings settings = null, IDictionary<string, string> trackingFields = null, CancellationToken cancellationToken = default)
{
var data = new JObject();
data.AddPropertyIfValue("schedule_for", userId);
data.AddPropertyIfValue("topic", topic);
data.AddPropertyIfValue("password", password);
data.AddPropertyIfValue("agenda", agenda);
Expand Down Expand Up @@ -328,6 +329,7 @@ public Task UpdateScheduledMeetingAsync(long meetingId, string userId = null, st
public Task UpdateRecurringMeetingAsync(long meetingId, string userId = null, string topic = null, string agenda = null, DateTime? start = null, int? duration = null, RecurrenceInfo recurrence = null, string password = null, MeetingSettings settings = null, IDictionary<string, string> trackingFields = null, CancellationToken cancellationToken = default)
{
var data = new JObject();
data.AddPropertyIfValue("schedule_for", userId);
data.AddPropertyIfValue("topic", topic);
data.AddPropertyIfValue("password", password);
data.AddPropertyIfValue("agenda", agenda);
Expand Down

0 comments on commit 8972b5d

Please sign in to comment.