# 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 EdgeForModifyGraphSchemaInput(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 = {
        'columns': 'list[ColumnForModifyGraphSchemaInput]',
        'edge_vertex_constraint': 'EdgeVertexConstraintForModifyGraphSchemaInput',
        'enable_reverse_index': 'bool',
        'label': 'str',
        'primary_key': 'list[str]',
        'schema_label_type': 'str',
        'secondary_indices': 'list[SecondaryIndexForModifyGraphSchemaInput]'
    }

    attribute_map = {
        'columns': 'Columns',
        'edge_vertex_constraint': 'EdgeVertexConstraint',
        'enable_reverse_index': 'EnableReverseIndex',
        'label': 'Label',
        'primary_key': 'PrimaryKey',
        'schema_label_type': 'SchemaLabelType',
        'secondary_indices': 'SecondaryIndices'
    }

    def __init__(self, columns=None, edge_vertex_constraint=None, enable_reverse_index=None, label=None, primary_key=None, schema_label_type=None, secondary_indices=None, _configuration=None):  # noqa: E501
        """EdgeForModifyGraphSchemaInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._columns = None
        self._edge_vertex_constraint = None
        self._enable_reverse_index = None
        self._label = None
        self._primary_key = None
        self._schema_label_type = None
        self._secondary_indices = None
        self.discriminator = None

        if columns is not None:
            self.columns = columns
        if edge_vertex_constraint is not None:
            self.edge_vertex_constraint = edge_vertex_constraint
        if enable_reverse_index is not None:
            self.enable_reverse_index = enable_reverse_index
        if label is not None:
            self.label = label
        if primary_key is not None:
            self.primary_key = primary_key
        if schema_label_type is not None:
            self.schema_label_type = schema_label_type
        if secondary_indices is not None:
            self.secondary_indices = secondary_indices

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


        :return: The columns of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: list[ColumnForModifyGraphSchemaInput]
        """
        return self._columns

    @columns.setter
    def columns(self, columns):
        """Sets the columns of this EdgeForModifyGraphSchemaInput.


        :param columns: The columns of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: list[ColumnForModifyGraphSchemaInput]
        """

        self._columns = columns

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


        :return: The edge_vertex_constraint of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: EdgeVertexConstraintForModifyGraphSchemaInput
        """
        return self._edge_vertex_constraint

    @edge_vertex_constraint.setter
    def edge_vertex_constraint(self, edge_vertex_constraint):
        """Sets the edge_vertex_constraint of this EdgeForModifyGraphSchemaInput.


        :param edge_vertex_constraint: The edge_vertex_constraint of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: EdgeVertexConstraintForModifyGraphSchemaInput
        """

        self._edge_vertex_constraint = edge_vertex_constraint

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


        :return: The enable_reverse_index of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: bool
        """
        return self._enable_reverse_index

    @enable_reverse_index.setter
    def enable_reverse_index(self, enable_reverse_index):
        """Sets the enable_reverse_index of this EdgeForModifyGraphSchemaInput.


        :param enable_reverse_index: The enable_reverse_index of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: bool
        """

        self._enable_reverse_index = enable_reverse_index

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


        :return: The label of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: str
        """
        return self._label

    @label.setter
    def label(self, label):
        """Sets the label of this EdgeForModifyGraphSchemaInput.


        :param label: The label of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: str
        """

        self._label = label

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


        :return: The primary_key of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: list[str]
        """
        return self._primary_key

    @primary_key.setter
    def primary_key(self, primary_key):
        """Sets the primary_key of this EdgeForModifyGraphSchemaInput.


        :param primary_key: The primary_key of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: list[str]
        """

        self._primary_key = primary_key

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


        :return: The schema_label_type of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: str
        """
        return self._schema_label_type

    @schema_label_type.setter
    def schema_label_type(self, schema_label_type):
        """Sets the schema_label_type of this EdgeForModifyGraphSchemaInput.


        :param schema_label_type: The schema_label_type of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: str
        """

        self._schema_label_type = schema_label_type

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


        :return: The secondary_indices of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :rtype: list[SecondaryIndexForModifyGraphSchemaInput]
        """
        return self._secondary_indices

    @secondary_indices.setter
    def secondary_indices(self, secondary_indices):
        """Sets the secondary_indices of this EdgeForModifyGraphSchemaInput.


        :param secondary_indices: The secondary_indices of this EdgeForModifyGraphSchemaInput.  # noqa: E501
        :type: list[SecondaryIndexForModifyGraphSchemaInput]
        """

        self._secondary_indices = secondary_indices

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

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