Skip to content

Commit

Permalink
Merge pull request WebexCommunity#209 from zhenyamorozov/master
Browse files Browse the repository at this point in the history
Add registerLink return attribute to webinars (meetings endpoint)
  • Loading branch information
Joseph Zanini authored Feb 15, 2024
2 parents d8b07d8 + d76ab94 commit b2c3280
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions generator/models/meetings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ list:
- name: webLink
description: Link to a meeting information page that launches the client
type: basestring
- name: registerLink
description: Link to a page where attendees can register for the webinar. Only applies for webinars.
type: basestring
- name: sipAddress
description: SIP address for callback from a video system
type: basestring
Expand Down
5 changes: 5 additions & 0 deletions webexteamssdk/models/mixins/meetings.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,11 @@ def webLink(self):
"""Link to a meeting information page that launches the client"""
return self._json_data.get("webLink")

@property
def registerLink(self):
"""Link to a page where attendees can register for the webinar. Only applies for webinars."""
return self._json_data.get("registerLink")

@property
def sipAddress(self):
"""SIP address for callback from a video system"""
Expand Down

0 comments on commit b2c3280

Please sign in to comment.