o
    Th                     @   sh   d Z ddlmZ ddlmZ ddlmZ ddlmZ ddlm	Z	 edd	e	d
G dd deeeZ
dS )zlinebot.models.mention module.    )ABCMeta)with_metaclass   )Base)
deprecated)LineBotSdkDeprecatedIn30zUse 'from linebot.v3.webhooks import Mention' instead. See https://github.com/line/line-bot-sdk-python/blob/master/README.rst for more details.z3.0.0)reasonversioncategoryc                       s"   e Zd ZdZd fdd	Z  ZS )MentionzMention.

    https://developers.line.biz/en/reference/messaging-api/#text-message

    Object containing the contents of the mentioned user.
    Nc                    s    t t| jdi | || _dS )zq__init__ method.

        :param List mentionees: Array of LINE mentionee objects
        :param kwargs:
        N )superr   __init__
mentionees)selfr   kwargs	__class__r   W/home/air/segue/gemini/back/venv/lib/python3.10/site-packages/linebot/models/mention.pyr   (   s   
zMention.__init__)N)__name__
__module____qualname____doc__r   __classcell__r   r   r   r   r      s    r   N)r   abcr   future.utilsr   baser   r   linebot.deprecationsr   r   r   r   r   r   <module>   s   