Skip to content

Commit

Permalink
(GH-352) Update XML comment to reflect updated signature of the IMeet…
Browse files Browse the repository at this point in the history
…ings.GetAsync method
  • Loading branch information
Jericho committed Jul 23, 2024
1 parent 9d2a17a commit 74d9b57
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ZoomNet/Resources/IMeetings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface IMeetings
/// An array of <see cref="MeetingSummary">meeting summaries</see>.
/// </returns>
/// <remarks>
/// To obtain the full details about a given meeting you must invoke <see cref="Meetings.GetAsync(long, string, CancellationToken)"/>.
/// To obtain the full details about a given meeting you must invoke <see cref="Meetings.GetAsync(long, string, bool, CancellationToken)"/>.
/// </remarks>
[Obsolete("Zoom is in the process of deprecating the \"page number\" and \"page count\" fields.")]
Task<PaginatedResponse<MeetingSummary>> GetAllAsync(string userId, MeetingListType type = MeetingListType.Scheduled, int recordsPerPage = 30, int page = 1, CancellationToken cancellationToken = default);
Expand All @@ -43,7 +43,7 @@ public interface IMeetings
/// An array of <see cref="MeetingSummary">meeting summaries</see>.
/// </returns>
/// <remarks>
/// To obtain the full details about a given meeting you must invoke <see cref="Meetings.GetAsync(long, string, CancellationToken)"/>.
/// To obtain the full details about a given meeting you must invoke <see cref="Meetings.GetAsync(long, string, bool, CancellationToken)"/>.
/// </remarks>
Task<PaginatedResponseWithToken<MeetingSummary>> GetAllAsync(string userId, MeetingListType type = MeetingListType.Scheduled, int recordsPerPage = 30, string pagingToken = null, CancellationToken cancellationToken = default);

Expand Down

0 comments on commit 74d9b57

Please sign in to comment.