diff --git a/libraries/bot-schema/src/main/java/com/microsoft/bot/schema/SpeechConstants.java b/libraries/bot-schema/src/main/java/com/microsoft/bot/schema/SpeechConstants.java new file mode 100644 index 000000000..3b267af3f --- /dev/null +++ b/libraries/bot-schema/src/main/java/com/microsoft/bot/schema/SpeechConstants.java @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.microsoft.bot.schema; + +/** + * Defines constants that can be used in the processing of speech interactions. + */ +public final class SpeechConstants { + + private SpeechConstants() { + + } + + /** + * The xml tag structure to indicate an empty speak tag, to be used in the 'speak' property of an Activity. + * When this is set it indicates to the channel that speech should not be generated. + */ + public static final String EMPTY_SPEAK_TAG = + ""; +}