# coding: utf-8

"""
    speech_saas_prod

    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 FormalizeResourcePacksRequest(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 = {
        'project_name': 'str',
        'tags': 'list[TagForFormalizeResourcePacksInput]',
        'times': 'int',
        'train_id': 'str'
    }

    attribute_map = {
        'project_name': 'ProjectName',
        'tags': 'Tags',
        'times': 'Times',
        'train_id': 'TrainID'
    }

    def __init__(self, project_name=None, tags=None, times=None, train_id=None, _configuration=None):  # noqa: E501
        """FormalizeResourcePacksRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._project_name = None
        self._tags = None
        self._times = None
        self._train_id = None
        self.discriminator = None

        self.project_name = project_name
        if tags is not None:
            self.tags = tags
        self.times = times
        self.train_id = train_id

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


        :return: The project_name of this FormalizeResourcePacksRequest.  # noqa: E501
        :rtype: str
        """
        return self._project_name

    @project_name.setter
    def project_name(self, project_name):
        """Sets the project_name of this FormalizeResourcePacksRequest.


        :param project_name: The project_name of this FormalizeResourcePacksRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and project_name is None:
            raise ValueError("Invalid value for `project_name`, must not be `None`")  # noqa: E501

        self._project_name = project_name

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


        :return: The tags of this FormalizeResourcePacksRequest.  # noqa: E501
        :rtype: list[TagForFormalizeResourcePacksInput]
        """
        return self._tags

    @tags.setter
    def tags(self, tags):
        """Sets the tags of this FormalizeResourcePacksRequest.


        :param tags: The tags of this FormalizeResourcePacksRequest.  # noqa: E501
        :type: list[TagForFormalizeResourcePacksInput]
        """

        self._tags = tags

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


        :return: The times of this FormalizeResourcePacksRequest.  # noqa: E501
        :rtype: int
        """
        return self._times

    @times.setter
    def times(self, times):
        """Sets the times of this FormalizeResourcePacksRequest.


        :param times: The times of this FormalizeResourcePacksRequest.  # noqa: E501
        :type: int
        """
        if self._configuration.client_side_validation and times is None:
            raise ValueError("Invalid value for `times`, must not be `None`")  # noqa: E501

        self._times = times

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


        :return: The train_id of this FormalizeResourcePacksRequest.  # noqa: E501
        :rtype: str
        """
        return self._train_id

    @train_id.setter
    def train_id(self, train_id):
        """Sets the train_id of this FormalizeResourcePacksRequest.


        :param train_id: The train_id of this FormalizeResourcePacksRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and train_id is None:
            raise ValueError("Invalid value for `train_id`, must not be `None`")  # noqa: E501

        self._train_id = train_id

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

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