Spaces:
Build error
Build error
Validify-testbot-1
/
botbuilder-python
/libraries
/botbuilder-dialogs
/botbuilder
/dialogs
/choices
/choice.py
| # Copyright (c) Microsoft Corporation. All rights reserved. | |
| # Licensed under the MIT License. | |
| from typing import List | |
| from botbuilder.schema import CardAction | |
| class Choice: | |
| def __init__( | |
| self, value: str = None, action: CardAction = None, synonyms: List[str] = None | |
| ): | |
| self.value: str = value | |
| self.action: CardAction = action | |
| self.synonyms: List[str] = synonyms | |