Skip to content

Commit db2ab7c

Browse files
committed
Added missing options
1 parent 59ddc6e commit db2ab7c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

webexteamssdk/cards/options.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ def __str__(self):
1010
def __repr__(self):
1111
return self.to_value()
1212

13+
class VerticalContentAlignment:
14+
TOP = 1
15+
CENTER = 2
16+
BOTTOM = 3
17+
1318
class Colors(AbstractOption):
1419
DEFAULT = 1
1520
DARK = 2
@@ -48,3 +53,28 @@ class Spacing(AbstractOption):
4853
LARGE = 5
4954
EXTRALARGE = 6
5055
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+
DEFAULT = 1
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

Comments
 (0)