Spaces:
Build error
Build error
File size: 406 Bytes
0827183 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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
|