# 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 BindYBForAXYBRequest(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 = {
        'audio_record_flag': 'int',
        'city_code': 'str',
        'city_code_by_phone_no': 'str',
        'degrade_city_list': 'list[str]',
        'enable_duration': 'int',
        'number_pool_no': 'str',
        'parent_sub_id': 'str',
        'phone_no_b': 'str',
        'phone_no_y': 'str',
        'random_flag': 'int',
        'user_data': 'str'
    }

    attribute_map = {
        'audio_record_flag': 'AudioRecordFlag',
        'city_code': 'CityCode',
        'city_code_by_phone_no': 'CityCodeByPhoneNo',
        'degrade_city_list': 'DegradeCityList',
        'enable_duration': 'EnableDuration',
        'number_pool_no': 'NumberPoolNo',
        'parent_sub_id': 'ParentSubId',
        'phone_no_b': 'PhoneNoB',
        'phone_no_y': 'PhoneNoY',
        'random_flag': 'RandomFlag',
        'user_data': 'UserData'
    }

    def __init__(self, audio_record_flag=None, city_code=None, city_code_by_phone_no=None, degrade_city_list=None, enable_duration=None, number_pool_no=None, parent_sub_id=None, phone_no_b=None, phone_no_y=None, random_flag=None, user_data=None, _configuration=None):  # noqa: E501
        """BindYBForAXYBRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._audio_record_flag = None
        self._city_code = None
        self._city_code_by_phone_no = None
        self._degrade_city_list = None
        self._enable_duration = None
        self._number_pool_no = None
        self._parent_sub_id = None
        self._phone_no_b = None
        self._phone_no_y = None
        self._random_flag = None
        self._user_data = None
        self.discriminator = None

        if audio_record_flag is not None:
            self.audio_record_flag = audio_record_flag
        if city_code is not None:
            self.city_code = city_code
        if city_code_by_phone_no is not None:
            self.city_code_by_phone_no = city_code_by_phone_no
        if degrade_city_list is not None:
            self.degrade_city_list = degrade_city_list
        self.enable_duration = enable_duration
        self.number_pool_no = number_pool_no
        self.parent_sub_id = parent_sub_id
        self.phone_no_b = phone_no_b
        if phone_no_y is not None:
            self.phone_no_y = phone_no_y
        if random_flag is not None:
            self.random_flag = random_flag
        if user_data is not None:
            self.user_data = user_data

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


        :return: The audio_record_flag of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: int
        """
        return self._audio_record_flag

    @audio_record_flag.setter
    def audio_record_flag(self, audio_record_flag):
        """Sets the audio_record_flag of this BindYBForAXYBRequest.


        :param audio_record_flag: The audio_record_flag of this BindYBForAXYBRequest.  # noqa: E501
        :type: int
        """

        self._audio_record_flag = audio_record_flag

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


        :return: The city_code of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: str
        """
        return self._city_code

    @city_code.setter
    def city_code(self, city_code):
        """Sets the city_code of this BindYBForAXYBRequest.


        :param city_code: The city_code of this BindYBForAXYBRequest.  # noqa: E501
        :type: str
        """

        self._city_code = city_code

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


        :return: The city_code_by_phone_no of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: str
        """
        return self._city_code_by_phone_no

    @city_code_by_phone_no.setter
    def city_code_by_phone_no(self, city_code_by_phone_no):
        """Sets the city_code_by_phone_no of this BindYBForAXYBRequest.


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

        self._city_code_by_phone_no = city_code_by_phone_no

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


        :return: The degrade_city_list of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: list[str]
        """
        return self._degrade_city_list

    @degrade_city_list.setter
    def degrade_city_list(self, degrade_city_list):
        """Sets the degrade_city_list of this BindYBForAXYBRequest.


        :param degrade_city_list: The degrade_city_list of this BindYBForAXYBRequest.  # noqa: E501
        :type: list[str]
        """

        self._degrade_city_list = degrade_city_list

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


        :return: The enable_duration of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: int
        """
        return self._enable_duration

    @enable_duration.setter
    def enable_duration(self, enable_duration):
        """Sets the enable_duration of this BindYBForAXYBRequest.


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

        self._enable_duration = enable_duration

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


        :return: The number_pool_no of this BindYBForAXYBRequest.  # 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 BindYBForAXYBRequest.


        :param number_pool_no: The number_pool_no of this BindYBForAXYBRequest.  # 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 parent_sub_id(self):
        """Gets the parent_sub_id of this BindYBForAXYBRequest.  # noqa: E501


        :return: The parent_sub_id of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: str
        """
        return self._parent_sub_id

    @parent_sub_id.setter
    def parent_sub_id(self, parent_sub_id):
        """Sets the parent_sub_id of this BindYBForAXYBRequest.


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

        self._parent_sub_id = parent_sub_id

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


        :return: The phone_no_b of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: str
        """
        return self._phone_no_b

    @phone_no_b.setter
    def phone_no_b(self, phone_no_b):
        """Sets the phone_no_b of this BindYBForAXYBRequest.


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

        self._phone_no_b = phone_no_b

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


        :return: The phone_no_y of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: str
        """
        return self._phone_no_y

    @phone_no_y.setter
    def phone_no_y(self, phone_no_y):
        """Sets the phone_no_y of this BindYBForAXYBRequest.


        :param phone_no_y: The phone_no_y of this BindYBForAXYBRequest.  # noqa: E501
        :type: str
        """

        self._phone_no_y = phone_no_y

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


        :return: The random_flag of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: int
        """
        return self._random_flag

    @random_flag.setter
    def random_flag(self, random_flag):
        """Sets the random_flag of this BindYBForAXYBRequest.


        :param random_flag: The random_flag of this BindYBForAXYBRequest.  # noqa: E501
        :type: int
        """

        self._random_flag = random_flag

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


        :return: The user_data of this BindYBForAXYBRequest.  # noqa: E501
        :rtype: str
        """
        return self._user_data

    @user_data.setter
    def user_data(self, user_data):
        """Sets the user_data of this BindYBForAXYBRequest.


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

        self._user_data = user_data

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

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