# coding: utf-8

"""
    vms

    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 UpdateNumberPoolV2Request(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 = {
        'name': 'str',
        'number_pool_no': 'str',
        'service_type': 'int',
        'sub_service_type': 'int'
    }

    attribute_map = {
        'name': 'Name',
        'number_pool_no': 'NumberPoolNo',
        'service_type': 'ServiceType',
        'sub_service_type': 'SubServiceType'
    }

    def __init__(self, name=None, number_pool_no=None, service_type=None, sub_service_type=None, _configuration=None):  # noqa: E501
        """UpdateNumberPoolV2Request - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._name = None
        self._number_pool_no = None
        self._service_type = None
        self._sub_service_type = None
        self.discriminator = None

        self.name = name
        self.number_pool_no = number_pool_no
        if service_type is not None:
            self.service_type = service_type
        if sub_service_type is not None:
            self.sub_service_type = sub_service_type

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


        :return: The name of this UpdateNumberPoolV2Request.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this UpdateNumberPoolV2Request.


        :param name: The name of this UpdateNumberPoolV2Request.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and name is None:
            raise ValueError("Invalid value for `name`, must not be `None`")  # noqa: E501
        if (self._configuration.client_side_validation and
                name is not None and len(name) > 31):
            raise ValueError("Invalid value for `name`, length must be less than or equal to `31`")  # noqa: E501
        if (self._configuration.client_side_validation and
                name is not None and len(name) < 1):
            raise ValueError("Invalid value for `name`, length must be greater than or equal to `1`")  # noqa: E501

        self._name = name

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


        :return: The number_pool_no of this UpdateNumberPoolV2Request.  # noqa: E501
        :rtype: str
        """
        return self._number_pool_no

    @number_pool_no.setter
    def number_pool_no(self, number_pool_no):
        """Sets the number_pool_no of this UpdateNumberPoolV2Request.


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

        self._number_pool_no = number_pool_no

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


        :return: The service_type of this UpdateNumberPoolV2Request.  # noqa: E501
        :rtype: int
        """
        return self._service_type

    @service_type.setter
    def service_type(self, service_type):
        """Sets the service_type of this UpdateNumberPoolV2Request.


        :param service_type: The service_type of this UpdateNumberPoolV2Request.  # noqa: E501
        :type: int
        """

        self._service_type = service_type

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


        :return: The sub_service_type of this UpdateNumberPoolV2Request.  # noqa: E501
        :rtype: int
        """
        return self._sub_service_type

    @sub_service_type.setter
    def sub_service_type(self, sub_service_type):
        """Sets the sub_service_type of this UpdateNumberPoolV2Request.


        :param sub_service_type: The sub_service_type of this UpdateNumberPoolV2Request.  # noqa: E501
        :type: int
        """

        self._sub_service_type = sub_service_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(UpdateNumberPoolV2Request, 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, UpdateNumberPoolV2Request):
            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, UpdateNumberPoolV2Request):
            return True

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