File tree 2 files changed +16
-0
lines changed
libraries/botbuilder-schema/botbuilder/schema 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 70
70
from .callerid_constants import CallerIdConstants
71
71
from .health_results import HealthResults
72
72
from .healthcheck_response import HealthCheckResponse
73
+ from .speech_constants import SpeechConstants
73
74
74
75
__all__ = [
75
76
"Activity" ,
139
140
"CallerIdConstants" ,
140
141
"HealthResults" ,
141
142
"HealthCheckResponse" ,
143
+ "SpeechConstants" ,
142
144
]
Original file line number Diff line number Diff line change
1
+ # Copyright (c) Microsoft Corporation. All rights reserved.
2
+ # Licensed under the MIT License.
3
+
4
+
5
+ class SpeechConstants :
6
+ """
7
+ Defines constants that can be used in the processing of speech interactions.
8
+ """
9
+
10
+ EMPTY_SPEAK_TAG = '<speak version="1.0" xmlns="https://www.w3.org/2001/10/synthesis" xml:lang="en-US" />'
11
+ """
12
+ The xml tag structure to indicate an empty speak tag, to be used in the 'speak' property of an Activity.
13
+ When set this indicates to the channel that speech should not be generated.
14
+ """
You can’t perform that action at this time.
0 commit comments