Skip to content

Commit d76ab94

Browse files
committed
Add registerLink return attribute to webinars
1 parent d8b07d8 commit d76ab94

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

generator/models/meetings.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@ list:
206206
- name: webLink
207207
description: Link to a meeting information page that launches the client
208208
type: basestring
209+
- name: registerLink
210+
description: Link to a page where attendees can register for the webinar. Only applies for webinars.
211+
type: basestring
209212
- name: sipAddress
210213
description: SIP address for callback from a video system
211214
type: basestring

webexteamssdk/models/mixins/meetings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,11 @@ def webLink(self):
126126
"""Link to a meeting information page that launches the client"""
127127
return self._json_data.get("webLink")
128128

129+
@property
130+
def registerLink(self):
131+
"""Link to a page where attendees can register for the webinar. Only applies for webinars."""
132+
return self._json_data.get("registerLink")
133+
129134
@property
130135
def sipAddress(self):
131136
"""SIP address for callback from a video system"""

0 commit comments

Comments
 (0)