You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added ability to send "pythonic" cards to message create method
You can now send a card like this:
```
from webexteamssdk import WebexTeamsAPI
from webexteamssdk.cards.card import AdaptiveCard
from webexteamssdk.cards.components import TextBlock
from webexteamssdk.cards.options import Colors
block = TextBlock("Hey hello there! I am a adaptive card",
color=Colors.GOOD)
card = AdaptiveCard(body=[block])
api = WebexTeamsAPI()
api.messages.create(text="fallback", roomId="...", cards=card)
```
0 commit comments