# coding: utf-8

"""
    graph20250815

    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 ColumnForAddGraphTablesInput(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 = {
        'column_name': 'str',
        'default_value': 'str',
        'enable_default_value': 'bool',
        'schema_column_type': 'str'
    }

    attribute_map = {
        'column_name': 'ColumnName',
        'default_value': 'DefaultValue',
        'enable_default_value': 'EnableDefaultValue',
        'schema_column_type': 'SchemaColumnType'
    }

    def __init__(self, column_name=None, default_value=None, enable_default_value=None, schema_column_type=None, _configuration=None):  # noqa: E501
        """ColumnForAddGraphTablesInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._column_name = None
        self._default_value = None
        self._enable_default_value = None
        self._schema_column_type = None
        self.discriminator = None

        if column_name is not None:
            self.column_name = column_name
        if default_value is not None:
            self.default_value = default_value
        if enable_default_value is not None:
            self.enable_default_value = enable_default_value
        if schema_column_type is not None:
            self.schema_column_type = schema_column_type

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


        :return: The column_name of this ColumnForAddGraphTablesInput.  # noqa: E501
        :rtype: str
        """
        return self._column_name

    @column_name.setter
    def column_name(self, column_name):
        """Sets the column_name of this ColumnForAddGraphTablesInput.


        :param column_name: The column_name of this ColumnForAddGraphTablesInput.  # noqa: E501
        :type: str
        """

        self._column_name = column_name

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


        :return: The default_value of this ColumnForAddGraphTablesInput.  # noqa: E501
        :rtype: str
        """
        return self._default_value

    @default_value.setter
    def default_value(self, default_value):
        """Sets the default_value of this ColumnForAddGraphTablesInput.


        :param default_value: The default_value of this ColumnForAddGraphTablesInput.  # noqa: E501
        :type: str
        """

        self._default_value = default_value

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


        :return: The enable_default_value of this ColumnForAddGraphTablesInput.  # noqa: E501
        :rtype: bool
        """
        return self._enable_default_value

    @enable_default_value.setter
    def enable_default_value(self, enable_default_value):
        """Sets the enable_default_value of this ColumnForAddGraphTablesInput.


        :param enable_default_value: The enable_default_value of this ColumnForAddGraphTablesInput.  # noqa: E501
        :type: bool
        """

        self._enable_default_value = enable_default_value

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


        :return: The schema_column_type of this ColumnForAddGraphTablesInput.  # noqa: E501
        :rtype: str
        """
        return self._schema_column_type

    @schema_column_type.setter
    def schema_column_type(self, schema_column_type):
        """Sets the schema_column_type of this ColumnForAddGraphTablesInput.


        :param schema_column_type: The schema_column_type of this ColumnForAddGraphTablesInput.  # noqa: E501
        :type: str
        """

        self._schema_column_type = schema_column_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(ColumnForAddGraphTablesInput, 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, ColumnForAddGraphTablesInput):
            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, ColumnForAddGraphTablesInput):
            return True

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