We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5727173 commit 73757b3Copy full SHA for 73757b3
1 file changed
webexteamssdk/models/cards/adaptive_card_component.py
@@ -25,6 +25,7 @@
25
import json
26
import enum
27
28
+
29
class AdaptiveCardComponent:
30
"""Base class for all Adaptive Card components.
31
@@ -65,7 +66,7 @@ def to_dict(self):
65
66
if property_value is not None:
67
if isinstance(property_value, enum.Enum):
68
property_value = str(property_value)
-
69
70
serialized_data[property_name] = property_value
71
72
# Recursively serialize sub-components
0 commit comments