# coding: utf-8

"""
    acep

    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 GetPodPropertyResponse(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 = {
        'persist_property_list': 'PersistPropertyListForGetPodPropertyOutput',
        'property_list': 'PropertyListForGetPodPropertyOutput',
        'setting_global_list': 'SettingGlobalListForGetPodPropertyOutput',
        'setting_secure_list': 'SettingSecureListForGetPodPropertyOutput',
        'setting_system_list': 'SettingSystemListForGetPodPropertyOutput'
    }

    attribute_map = {
        'persist_property_list': 'PersistPropertyList',
        'property_list': 'PropertyList',
        'setting_global_list': 'SettingGlobalList',
        'setting_secure_list': 'SettingSecureList',
        'setting_system_list': 'SettingSystemList'
    }

    def __init__(self, persist_property_list=None, property_list=None, setting_global_list=None, setting_secure_list=None, setting_system_list=None, _configuration=None):  # noqa: E501
        """GetPodPropertyResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._persist_property_list = None
        self._property_list = None
        self._setting_global_list = None
        self._setting_secure_list = None
        self._setting_system_list = None
        self.discriminator = None

        if persist_property_list is not None:
            self.persist_property_list = persist_property_list
        if property_list is not None:
            self.property_list = property_list
        if setting_global_list is not None:
            self.setting_global_list = setting_global_list
        if setting_secure_list is not None:
            self.setting_secure_list = setting_secure_list
        if setting_system_list is not None:
            self.setting_system_list = setting_system_list

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


        :return: The persist_property_list of this GetPodPropertyResponse.  # noqa: E501
        :rtype: PersistPropertyListForGetPodPropertyOutput
        """
        return self._persist_property_list

    @persist_property_list.setter
    def persist_property_list(self, persist_property_list):
        """Sets the persist_property_list of this GetPodPropertyResponse.


        :param persist_property_list: The persist_property_list of this GetPodPropertyResponse.  # noqa: E501
        :type: PersistPropertyListForGetPodPropertyOutput
        """

        self._persist_property_list = persist_property_list

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


        :return: The property_list of this GetPodPropertyResponse.  # noqa: E501
        :rtype: PropertyListForGetPodPropertyOutput
        """
        return self._property_list

    @property_list.setter
    def property_list(self, property_list):
        """Sets the property_list of this GetPodPropertyResponse.


        :param property_list: The property_list of this GetPodPropertyResponse.  # noqa: E501
        :type: PropertyListForGetPodPropertyOutput
        """

        self._property_list = property_list

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


        :return: The setting_global_list of this GetPodPropertyResponse.  # noqa: E501
        :rtype: SettingGlobalListForGetPodPropertyOutput
        """
        return self._setting_global_list

    @setting_global_list.setter
    def setting_global_list(self, setting_global_list):
        """Sets the setting_global_list of this GetPodPropertyResponse.


        :param setting_global_list: The setting_global_list of this GetPodPropertyResponse.  # noqa: E501
        :type: SettingGlobalListForGetPodPropertyOutput
        """

        self._setting_global_list = setting_global_list

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


        :return: The setting_secure_list of this GetPodPropertyResponse.  # noqa: E501
        :rtype: SettingSecureListForGetPodPropertyOutput
        """
        return self._setting_secure_list

    @setting_secure_list.setter
    def setting_secure_list(self, setting_secure_list):
        """Sets the setting_secure_list of this GetPodPropertyResponse.


        :param setting_secure_list: The setting_secure_list of this GetPodPropertyResponse.  # noqa: E501
        :type: SettingSecureListForGetPodPropertyOutput
        """

        self._setting_secure_list = setting_secure_list

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


        :return: The setting_system_list of this GetPodPropertyResponse.  # noqa: E501
        :rtype: SettingSystemListForGetPodPropertyOutput
        """
        return self._setting_system_list

    @setting_system_list.setter
    def setting_system_list(self, setting_system_list):
        """Sets the setting_system_list of this GetPodPropertyResponse.


        :param setting_system_list: The setting_system_list of this GetPodPropertyResponse.  # noqa: E501
        :type: SettingSystemListForGetPodPropertyOutput
        """

        self._setting_system_list = setting_system_list

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

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