From ede8803728a524c7adf4d5eb12f2f832449880aa Mon Sep 17 00:00:00 2001 From: craigers521 Date: Tue, 31 May 2022 13:40:56 -0500 Subject: [PATCH] fixing OpenUrl action --- webexteamssdk/models/cards/actions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webexteamssdk/models/cards/actions.py b/webexteamssdk/models/cards/actions.py index ba4f730..a8bb42d 100644 --- a/webexteamssdk/models/cards/actions.py +++ b/webexteamssdk/models/cards/actions.py @@ -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'], )