Spaces:
Build error
Build error
Validify-testbot-1
/
botbuilder-python
/libraries
/botbuilder-dialogs
/botbuilder
/dialogs
/memory
/scope_path.py
# Copyright (c) Microsoft Corporation. All rights reserved. | |
# Licensed under the MIT License. | |
# User memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.User instead.</remarks> | |
USER = "user" | |
# Conversation memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.Conversation instead.</remark | |
CONVERSATION = "conversation" | |
# Dialog memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.Dialog instead.</remark | |
DIALOG = "dialog" | |
# DialogClass memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.DialogClass instead.</remark | |
DIALOG_CLASS = "dialogclass" | |
# This memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.This instead.</remark | |
THIS = "this" | |
# Class memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.Class instead.</remarks> | |
CLASS = "class" | |
# Settings memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.Settings instead.</remarks> | |
SETTINGS = "settings" | |
# Turn memory scope root path. | |
# <remarks>This property is deprecated, use ScopePath.Turn instead.</remarks> | |
TURN = "turn" | |