# coding: utf-8

"""
    graph

    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 Bg3LinkForCreateInstanceInput(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 = {
        'address_type': 'str',
        'availability_zone_id': 'str',
        'bg3_link': 'str'
    }

    attribute_map = {
        'address_type': 'AddressType',
        'availability_zone_id': 'AvailabilityZoneId',
        'bg3_link': 'Bg3Link'
    }

    def __init__(self, address_type=None, availability_zone_id=None, bg3_link=None, _configuration=None):  # noqa: E501
        """Bg3LinkForCreateInstanceInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._address_type = None
        self._availability_zone_id = None
        self._bg3_link = None
        self.discriminator = None

        if address_type is not None:
            self.address_type = address_type
        if availability_zone_id is not None:
            self.availability_zone_id = availability_zone_id
        if bg3_link is not None:
            self.bg3_link = bg3_link

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


        :return: The address_type of this Bg3LinkForCreateInstanceInput.  # noqa: E501
        :rtype: str
        """
        return self._address_type

    @address_type.setter
    def address_type(self, address_type):
        """Sets the address_type of this Bg3LinkForCreateInstanceInput.


        :param address_type: The address_type of this Bg3LinkForCreateInstanceInput.  # noqa: E501
        :type: str
        """

        self._address_type = address_type

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


        :return: The availability_zone_id of this Bg3LinkForCreateInstanceInput.  # noqa: E501
        :rtype: str
        """
        return self._availability_zone_id

    @availability_zone_id.setter
    def availability_zone_id(self, availability_zone_id):
        """Sets the availability_zone_id of this Bg3LinkForCreateInstanceInput.


        :param availability_zone_id: The availability_zone_id of this Bg3LinkForCreateInstanceInput.  # noqa: E501
        :type: str
        """

        self._availability_zone_id = availability_zone_id

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


        :return: The bg3_link of this Bg3LinkForCreateInstanceInput.  # noqa: E501
        :rtype: str
        """
        return self._bg3_link

    @bg3_link.setter
    def bg3_link(self, bg3_link):
        """Sets the bg3_link of this Bg3LinkForCreateInstanceInput.


        :param bg3_link: The bg3_link of this Bg3LinkForCreateInstanceInput.  # noqa: E501
        :type: str
        """

        self._bg3_link = bg3_link

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

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