Skip to content

Commit 40acce8

Browse files
authored
Merge pull request #175 from craigers521/master
fixing OpenUrl action
2 parents 6733127 + ede8803 commit 40acce8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

webexteamssdk/models/cards/actions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ class OpenUrl(AdaptiveCardComponent):
3030
type = "Action.OpenUrl"
3131

3232
def __init__(self, url, title=None, iconURL=None):
33+
self.url = url
3334
self.title = title
3435
self.iconURL = iconURL
3536

3637
super().__init__(
3738
serializable_properties=[],
38-
simple_properties=['type', 'title', 'iconURL'],
39+
simple_properties=['url', 'type', 'title', 'iconURL'],
3940
)
4041

4142

0 commit comments

Comments
 (0)