Skip to content

Commit

Permalink
Merge pull request #175 from craigers521/master
Browse files Browse the repository at this point in the history
fixing OpenUrl action
  • Loading branch information
sQu4rks committed Jun 1, 2022
2 parents 6733127 + ede8803 commit 40acce8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webexteamssdk/models/cards/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@ class OpenUrl(AdaptiveCardComponent):
type = "Action.OpenUrl"

def __init__(self, url, title=None, iconURL=None):
self.url = url
self.title = title
self.iconURL = iconURL

super().__init__(
serializable_properties=[],
simple_properties=['type', 'title', 'iconURL'],
simple_properties=['url', 'type', 'title', 'iconURL'],
)


Expand Down

0 comments on commit 40acce8

Please sign in to comment.