-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing parameter in IMeeting.GetAsync method #352
Comments
Looks like a new parameter. Thanks for bringing it to my attention, I wasn't aware of it. They added the same parameter to "get webinar" as well. |
I have been experimenting with this new parameter when fetching a recuring meeting and indeed I can see that past occurrences are omitted from the result when this parameter is false and they are included when true. As you pointed out, the ZoomNet library currently does not allow you to configure this parameter to include past occurrences and therefore I understand why you requested this new feature. I could certainly add a new boolean parameter to the One reason why I am considering this alternate solution if that If we end up deciding to add this new parameter, I would add a note in the XML comments along these lines: /// <remarks>
/// Please note that this boolean parameter is applicable only when fetching a recurring meeting.
/// It will be ignored if you are fetching any other type of meeting such as scheduled, personal or instant for example.
/// </remarks> Let me know what you think. |
Personally, I only need the true parameter, and solved it with reflection. But for a library, it's better to have an optional parameter. You can add a default method parameter Thanks for quick response. |
…tAsync to indicate whether to include previous occurrences
I ended up adding an overload of the GetAsync method to avoid the confusion. Developers can use
|
I am preparing to release 0.79.0 which will include this enhancement. |
🎉 This issue has been resolved in version 0.79.0 🎉 The release is available on: Your GitReleaseManager bot 📦🚀 |
Please add parameter show_previous_occurrences to the API get metting method
https://developers.zoom.us/docs/meeting-sdk/apis/#operation/meeting
The text was updated successfully, but these errors were encountered: