We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59ddc6e commit db2ab7cCopy full SHA for db2ab7c
1 file changed
webexteamssdk/cards/options.py
@@ -10,6 +10,11 @@ def __str__(self):
10
def __repr__(self):
11
return self.to_value()
12
13
+class VerticalContentAlignment:
14
+ TOP = 1
15
+ CENTER = 2
16
+ BOTTOM = 3
17
+
18
class Colors(AbstractOption):
19
DEFAULT = 1
20
DARK = 2
@@ -48,3 +53,28 @@ class Spacing(AbstractOption):
48
53
LARGE = 5
49
54
EXTRALARGE = 6
50
55
PADDING = 7
56
57
+class ImageSize(AbstractOption):
58
+ AUTO = 1
59
+ STRETCH = 2
60
+ SMALL = 3
61
+ MEDIUM = 4
62
+ LARGE = 5
63
64
+class ImageStyle(AbstractOption):
65
+ DEFAULT = 1
66
+ PERSON = 2
67
68
+class ContainerStyle(AbstractOption):
69
70
+ EMPHASIS = 2
71
72
+class TextInputStyle(AbstractOption):
73
+ TEXT = 1
74
+ TEL = 2
75
+ URL = 3
76
+ EMAIL = 4
77
78
+class ChoiceInputStyle(AbstractOption):
79
+ COMPACT = 1
80
+ EXPANDED = 2
0 commit comments