File size: 786 Bytes
0827183
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.


class ContentType:
    O365_CONNECTOR_CARD = "application/vnd.microsoft.teams.card.o365connector"
    FILE_CONSENT_CARD = "application/vnd.microsoft.teams.card.file.consent"
    FILE_DOWNLOAD_INFO = "application/vnd.microsoft.teams.file.download.info"
    FILE_INFO_CARD = "application/vnd.microsoft.teams.card.file.info"


class Type:
    O365_CONNECTOR_CARD_VIEWACTION = "ViewAction"
    O365_CONNECTOR_CARD_OPEN_URI = "OpenUri"
    O365_CONNECTOR_CARD_HTTP_POST = "HttpPOST"
    O365_CONNECTOR_CARD_ACTION_CARD = "ActionCard"
    O365_CONNECTOR_CARD_TEXT_INPUT = "TextInput"
    O365_CONNECTOR_CARD_DATE_INPUT = "DateInput"
    O365_CONNECTOR_CARD_MULTICHOICE_INPUT = "MultichoiceInput"