# 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 ListVideoAnalysisTaskRequest(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 = {
        'page_index': 'int',
        'page_size': 'int',
        'sort_by': 'str',
        'sort_order': 'int',
        'task_name': 'str',
        'task_state': 'list[str]',
        'task_type': 'str'
    }

    attribute_map = {
        'page_index': 'page_index',
        'page_size': 'page_size',
        'sort_by': 'sort_by',
        'sort_order': 'sort_order',
        'task_name': 'task_name',
        'task_state': 'task_state',
        'task_type': 'task_type'
    }

    def __init__(self, page_index=None, page_size=None, sort_by=None, sort_order=None, task_name=None, task_state=None, task_type=None, _configuration=None):  # noqa: E501
        """ListVideoAnalysisTaskRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._page_index = None
        self._page_size = None
        self._sort_by = None
        self._sort_order = None
        self._task_name = None
        self._task_state = None
        self._task_type = None
        self.discriminator = None

        if page_index is not None:
            self.page_index = page_index
        if page_size is not None:
            self.page_size = page_size
        if sort_by is not None:
            self.sort_by = sort_by
        if sort_order is not None:
            self.sort_order = sort_order
        if task_name is not None:
            self.task_name = task_name
        if task_state is not None:
            self.task_state = task_state
        if task_type is not None:
            self.task_type = task_type

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


        :return: The page_index of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._page_index

    @page_index.setter
    def page_index(self, page_index):
        """Sets the page_index of this ListVideoAnalysisTaskRequest.


        :param page_index: The page_index of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: int
        """

        self._page_index = page_index

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


        :return: The page_size of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._page_size

    @page_size.setter
    def page_size(self, page_size):
        """Sets the page_size of this ListVideoAnalysisTaskRequest.


        :param page_size: The page_size of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: int
        """

        self._page_size = page_size

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


        :return: The sort_by of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: str
        """
        return self._sort_by

    @sort_by.setter
    def sort_by(self, sort_by):
        """Sets the sort_by of this ListVideoAnalysisTaskRequest.


        :param sort_by: The sort_by of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: str
        """

        self._sort_by = sort_by

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


        :return: The sort_order of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._sort_order

    @sort_order.setter
    def sort_order(self, sort_order):
        """Sets the sort_order of this ListVideoAnalysisTaskRequest.


        :param sort_order: The sort_order of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: int
        """

        self._sort_order = sort_order

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


        :return: The task_name of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: str
        """
        return self._task_name

    @task_name.setter
    def task_name(self, task_name):
        """Sets the task_name of this ListVideoAnalysisTaskRequest.


        :param task_name: The task_name of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: str
        """

        self._task_name = task_name

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


        :return: The task_state of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._task_state

    @task_state.setter
    def task_state(self, task_state):
        """Sets the task_state of this ListVideoAnalysisTaskRequest.


        :param task_state: The task_state of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: list[str]
        """
        allowed_values = ["init", "pending", "running", "success", "failed", "uploading", "transcoding", "transcoded", "streaming", "stopped"]  # noqa: E501
        if (self._configuration.client_side_validation and
                not set(task_state).issubset(set(allowed_values))):  # noqa: E501
            raise ValueError(
                "Invalid values for `task_state` [{0}], must be a subset of [{1}]"  # noqa: E501
                .format(", ".join(map(str, set(task_state) - set(allowed_values))),  # noqa: E501
                        ", ".join(map(str, allowed_values)))
            )

        self._task_state = task_state

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


        :return: The task_type of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :rtype: str
        """
        return self._task_type

    @task_type.setter
    def task_type(self, task_type):
        """Sets the task_type of this ListVideoAnalysisTaskRequest.


        :param task_type: The task_type of this ListVideoAnalysisTaskRequest.  # noqa: E501
        :type: str
        """
        allowed_values = ["video", "video_stream"]  # noqa: E501
        if (self._configuration.client_side_validation and
                task_type not in allowed_values):
            raise ValueError(
                "Invalid value for `task_type` ({0}), must be one of {1}"  # noqa: E501
                .format(task_type, allowed_values)
            )

        self._task_type = task_type

    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(ListVideoAnalysisTaskRequest, 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, ListVideoAnalysisTaskRequest):
            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, ListVideoAnalysisTaskRequest):
            return True

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