# coding: utf-8

"""
    vei_api

    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501

    OpenAPI spec version: common-version
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


import pprint
import re  # noqa: F401

import six

from volcenginesdkcore.configuration import Configuration


class GetVideoAnalysisTaskDataResponse(object):
    """NOTE: This class is auto generated by the swagger code generator program.

    Do not edit the class manually.
    """

    """
    Attributes:
      swagger_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    swagger_types = {
        'account_id': 'str',
        'create_timestamp': 'int',
        'image_meta': 'ImageMetaForGetVideoAnalysisTaskDataOutput',
        'images': 'list[str]',
        'model_duration_total': 'float',
        'model_response': 'ModelResponseForGetVideoAnalysisTaskDataOutput',
        'model_result': 'ModelResultForGetVideoAnalysisTaskDataOutput',
        'stream_path': 'str',
        'task_duration_total': 'float',
        'task_id': 'str',
        'update_timestamp': 'int',
        'video_path': 'str',
        'vlm_duration_total': 'float'
    }

    attribute_map = {
        'account_id': 'account_id',
        'create_timestamp': 'create_timestamp',
        'image_meta': 'image_meta',
        'images': 'images',
        'model_duration_total': 'model_duration_total',
        'model_response': 'model_response',
        'model_result': 'model_result',
        'stream_path': 'stream_path',
        'task_duration_total': 'task_duration_total',
        'task_id': 'task_id',
        'update_timestamp': 'update_timestamp',
        'video_path': 'video_path',
        'vlm_duration_total': 'vlm_duration_total'
    }

    def __init__(self, account_id=None, create_timestamp=None, image_meta=None, images=None, model_duration_total=None, model_response=None, model_result=None, stream_path=None, task_duration_total=None, task_id=None, update_timestamp=None, video_path=None, vlm_duration_total=None, _configuration=None):  # noqa: E501
        """GetVideoAnalysisTaskDataResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._account_id = None
        self._create_timestamp = None
        self._image_meta = None
        self._images = None
        self._model_duration_total = None
        self._model_response = None
        self._model_result = None
        self._stream_path = None
        self._task_duration_total = None
        self._task_id = None
        self._update_timestamp = None
        self._video_path = None
        self._vlm_duration_total = None
        self.discriminator = None

        if account_id is not None:
            self.account_id = account_id
        if create_timestamp is not None:
            self.create_timestamp = create_timestamp
        if image_meta is not None:
            self.image_meta = image_meta
        if images is not None:
            self.images = images
        if model_duration_total is not None:
            self.model_duration_total = model_duration_total
        if model_response is not None:
            self.model_response = model_response
        if model_result is not None:
            self.model_result = model_result
        if stream_path is not None:
            self.stream_path = stream_path
        if task_duration_total is not None:
            self.task_duration_total = task_duration_total
        if task_id is not None:
            self.task_id = task_id
        if update_timestamp is not None:
            self.update_timestamp = update_timestamp
        if video_path is not None:
            self.video_path = video_path
        if vlm_duration_total is not None:
            self.vlm_duration_total = vlm_duration_total

    @property
    def account_id(self):
        """Gets the account_id of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The account_id of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: str
        """
        return self._account_id

    @account_id.setter
    def account_id(self, account_id):
        """Sets the account_id of this GetVideoAnalysisTaskDataResponse.


        :param account_id: The account_id of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: str
        """

        self._account_id = account_id

    @property
    def create_timestamp(self):
        """Gets the create_timestamp of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The create_timestamp of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: int
        """
        return self._create_timestamp

    @create_timestamp.setter
    def create_timestamp(self, create_timestamp):
        """Sets the create_timestamp of this GetVideoAnalysisTaskDataResponse.


        :param create_timestamp: The create_timestamp of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: int
        """

        self._create_timestamp = create_timestamp

    @property
    def image_meta(self):
        """Gets the image_meta of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The image_meta of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: ImageMetaForGetVideoAnalysisTaskDataOutput
        """
        return self._image_meta

    @image_meta.setter
    def image_meta(self, image_meta):
        """Sets the image_meta of this GetVideoAnalysisTaskDataResponse.


        :param image_meta: The image_meta of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: ImageMetaForGetVideoAnalysisTaskDataOutput
        """

        self._image_meta = image_meta

    @property
    def images(self):
        """Gets the images of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The images of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: list[str]
        """
        return self._images

    @images.setter
    def images(self, images):
        """Sets the images of this GetVideoAnalysisTaskDataResponse.


        :param images: The images of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: list[str]
        """

        self._images = images

    @property
    def model_duration_total(self):
        """Gets the model_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The model_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: float
        """
        return self._model_duration_total

    @model_duration_total.setter
    def model_duration_total(self, model_duration_total):
        """Sets the model_duration_total of this GetVideoAnalysisTaskDataResponse.


        :param model_duration_total: The model_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: float
        """

        self._model_duration_total = model_duration_total

    @property
    def model_response(self):
        """Gets the model_response of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The model_response of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: ModelResponseForGetVideoAnalysisTaskDataOutput
        """
        return self._model_response

    @model_response.setter
    def model_response(self, model_response):
        """Sets the model_response of this GetVideoAnalysisTaskDataResponse.


        :param model_response: The model_response of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: ModelResponseForGetVideoAnalysisTaskDataOutput
        """

        self._model_response = model_response

    @property
    def model_result(self):
        """Gets the model_result of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The model_result of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: ModelResultForGetVideoAnalysisTaskDataOutput
        """
        return self._model_result

    @model_result.setter
    def model_result(self, model_result):
        """Sets the model_result of this GetVideoAnalysisTaskDataResponse.


        :param model_result: The model_result of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: ModelResultForGetVideoAnalysisTaskDataOutput
        """

        self._model_result = model_result

    @property
    def stream_path(self):
        """Gets the stream_path of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The stream_path of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: str
        """
        return self._stream_path

    @stream_path.setter
    def stream_path(self, stream_path):
        """Sets the stream_path of this GetVideoAnalysisTaskDataResponse.


        :param stream_path: The stream_path of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: str
        """

        self._stream_path = stream_path

    @property
    def task_duration_total(self):
        """Gets the task_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The task_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: float
        """
        return self._task_duration_total

    @task_duration_total.setter
    def task_duration_total(self, task_duration_total):
        """Sets the task_duration_total of this GetVideoAnalysisTaskDataResponse.


        :param task_duration_total: The task_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: float
        """

        self._task_duration_total = task_duration_total

    @property
    def task_id(self):
        """Gets the task_id of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The task_id of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: str
        """
        return self._task_id

    @task_id.setter
    def task_id(self, task_id):
        """Sets the task_id of this GetVideoAnalysisTaskDataResponse.


        :param task_id: The task_id of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: str
        """

        self._task_id = task_id

    @property
    def update_timestamp(self):
        """Gets the update_timestamp of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The update_timestamp of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: int
        """
        return self._update_timestamp

    @update_timestamp.setter
    def update_timestamp(self, update_timestamp):
        """Sets the update_timestamp of this GetVideoAnalysisTaskDataResponse.


        :param update_timestamp: The update_timestamp of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: int
        """

        self._update_timestamp = update_timestamp

    @property
    def video_path(self):
        """Gets the video_path of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The video_path of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: str
        """
        return self._video_path

    @video_path.setter
    def video_path(self, video_path):
        """Sets the video_path of this GetVideoAnalysisTaskDataResponse.


        :param video_path: The video_path of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: str
        """

        self._video_path = video_path

    @property
    def vlm_duration_total(self):
        """Gets the vlm_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501


        :return: The vlm_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :rtype: float
        """
        return self._vlm_duration_total

    @vlm_duration_total.setter
    def vlm_duration_total(self, vlm_duration_total):
        """Sets the vlm_duration_total of this GetVideoAnalysisTaskDataResponse.


        :param vlm_duration_total: The vlm_duration_total of this GetVideoAnalysisTaskDataResponse.  # noqa: E501
        :type: float
        """

        self._vlm_duration_total = vlm_duration_total

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.swagger_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value
        if issubclass(GetVideoAnalysisTaskDataResponse, dict):
            for key, value in self.items():
                result[key] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, GetVideoAnalysisTaskDataResponse):
            return False

        return self.to_dict() == other.to_dict()

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        if not isinstance(other, GetVideoAnalysisTaskDataResponse):
            return True

        return self.to_dict() != other.to_dict()
