o
    ?Hh                     @   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.video_play_complete module.    )ABCMeta)with_metaclass   )Base)
deprecated)LineBotSdkDeprecatedIn30zUse 'from linebot.v3.webhooks import VideoPlayComplete' 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 )VideoPlayCompletez)Abstract Base Class of VideoPlayComplete.Nc                    s    t t| jdi | || _dS )z__init__ method.

        :param str tracking_id: the video viewing complete event occurs
            when the user finishes watching the video.
            Max character limit: 100.
        :param kwargs:
        N )superr   __init__tracking_id)selfr   kwargs	__class__r   b/home/air/sanwanet/gpt-api/venv/lib/python3.10/site-packages/linebot/models/video_play_complete.pyr   #   s   
zVideoPlayComplete.__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   