"""
Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License.
"""

from typing import List, Literal, Optional, Union

from .message_entity import MessageEntity


class AIMessageEntity(MessageEntity):
    additional_type: Optional[List[Union[Literal["AIGeneratedContent"], str]]] = None
    "Indicate that the content was generated by AI."
