Spaces:
Build error
Build error
File size: 4,424 Bytes
0827183 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
from warnings import warn
from ._models_py3 import Activity
from ._models_py3 import ActivityEventNames
from ._models_py3 import AdaptiveCardInvokeAction
from ._models_py3 import AdaptiveCardInvokeResponse
from ._models_py3 import AdaptiveCardInvokeValue
from ._models_py3 import AnimationCard
from ._models_py3 import Attachment
from ._models_py3 import AttachmentData
from ._models_py3 import AttachmentInfo
from ._models_py3 import AttachmentView
from ._models_py3 import AudioCard
from ._models_py3 import BasicCard
from ._models_py3 import CardAction
from ._models_py3 import CardImage
from ._models_py3 import ChannelAccount
from ._models_py3 import ConversationAccount
from ._models_py3 import ConversationMembers
from ._models_py3 import ConversationParameters
from ._models_py3 import ConversationReference
from ._models_py3 import ConversationResourceResponse
from ._models_py3 import ConversationsResult
from ._models_py3 import ExpectedReplies
from ._models_py3 import Entity
from ._models_py3 import Error
from ._models_py3 import ErrorResponse, ErrorResponseException
from ._models_py3 import Fact
from ._models_py3 import GeoCoordinates
from ._models_py3 import HeroCard
from ._models_py3 import InnerHttpError
from ._models_py3 import InvokeResponse
from ._models_py3 import MediaCard
from ._models_py3 import MediaEventValue
from ._models_py3 import MediaUrl
from ._models_py3 import Mention
from ._models_py3 import MessageReaction
from ._models_py3 import OAuthCard
from ._models_py3 import PagedMembersResult
from ._models_py3 import Place
from ._models_py3 import ReceiptCard
from ._models_py3 import ReceiptItem
from ._models_py3 import ResourceResponse
from ._models_py3 import SemanticAction
from ._models_py3 import SigninCard
from ._models_py3 import SuggestedActions
from ._models_py3 import TextHighlight
from ._models_py3 import Thing
from ._models_py3 import ThumbnailCard
from ._models_py3 import ThumbnailUrl
from ._models_py3 import TokenExchangeInvokeRequest
from ._models_py3 import TokenExchangeInvokeResponse
from ._models_py3 import TokenExchangeState
from ._models_py3 import TokenRequest
from ._models_py3 import TokenResponse
from ._models_py3 import Transcript
from ._models_py3 import VideoCard
from ._connector_client_enums import (
ActionTypes,
ActivityImportance,
ActivityTypes,
AttachmentLayoutTypes,
ContactRelationUpdateActionTypes,
DeliveryModes,
EndOfConversationCodes,
InputHints,
InstallationUpdateActionTypes,
MessageReactionTypes,
RoleTypes,
TextFormatTypes,
)
from ._sign_in_enums import SignInConstants
from .callerid_constants import CallerIdConstants
from .speech_constants import SpeechConstants
__all__ = [
"Activity",
"ActivityEventNames",
"AdaptiveCardInvokeAction",
"AdaptiveCardInvokeResponse",
"AdaptiveCardInvokeValue",
"AnimationCard",
"Attachment",
"AttachmentData",
"AttachmentInfo",
"AttachmentView",
"AudioCard",
"BasicCard",
"CardAction",
"CardImage",
"ChannelAccount",
"ConversationAccount",
"ConversationMembers",
"ConversationParameters",
"ConversationReference",
"ConversationResourceResponse",
"ConversationsResult",
"ExpectedReplies",
"Entity",
"Error",
"ErrorResponse",
"ErrorResponseException",
"Fact",
"GeoCoordinates",
"HeroCard",
"InnerHttpError",
"InvokeResponse",
"MediaCard",
"MediaEventValue",
"MediaUrl",
"Mention",
"MessageReaction",
"OAuthCard",
"PagedMembersResult",
"Place",
"ReceiptCard",
"ReceiptItem",
"ResourceResponse",
"SemanticAction",
"SigninCard",
"SignInConstants",
"SuggestedActions",
"TextHighlight",
"Thing",
"ThumbnailCard",
"ThumbnailUrl",
"TokenExchangeInvokeRequest",
"TokenExchangeInvokeResponse",
"TokenExchangeState",
"TokenRequest",
"TokenResponse",
"Transcript",
"VideoCard",
"RoleTypes",
"ActivityTypes",
"TextFormatTypes",
"AttachmentLayoutTypes",
"MessageReactionTypes",
"InputHints",
"ActionTypes",
"EndOfConversationCodes",
"ActivityImportance",
"DeliveryModes",
"ContactRelationUpdateActionTypes",
"InstallationUpdateActionTypes",
"CallerIdConstants",
"SpeechConstants",
]
|