# coding: utf-8

"""
    pca20251001

    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 CertificateForGetSubInstanceOutput(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 = {
        'chain': 'list[str]',
        'csr': 'str',
        'encrypt_chain': 'list[str]',
        'encrypt_key': 'str',
        'key': 'str'
    }

    attribute_map = {
        'chain': 'Chain',
        'csr': 'Csr',
        'encrypt_chain': 'EncryptChain',
        'encrypt_key': 'EncryptKey',
        'key': 'Key'
    }

    def __init__(self, chain=None, csr=None, encrypt_chain=None, encrypt_key=None, key=None, _configuration=None):  # noqa: E501
        """CertificateForGetSubInstanceOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._chain = None
        self._csr = None
        self._encrypt_chain = None
        self._encrypt_key = None
        self._key = None
        self.discriminator = None

        if chain is not None:
            self.chain = chain
        if csr is not None:
            self.csr = csr
        if encrypt_chain is not None:
            self.encrypt_chain = encrypt_chain
        if encrypt_key is not None:
            self.encrypt_key = encrypt_key
        if key is not None:
            self.key = key

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


        :return: The chain of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :rtype: list[str]
        """
        return self._chain

    @chain.setter
    def chain(self, chain):
        """Sets the chain of this CertificateForGetSubInstanceOutput.


        :param chain: The chain of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :type: list[str]
        """

        self._chain = chain

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


        :return: The csr of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :rtype: str
        """
        return self._csr

    @csr.setter
    def csr(self, csr):
        """Sets the csr of this CertificateForGetSubInstanceOutput.


        :param csr: The csr of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :type: str
        """

        self._csr = csr

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


        :return: The encrypt_chain of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :rtype: list[str]
        """
        return self._encrypt_chain

    @encrypt_chain.setter
    def encrypt_chain(self, encrypt_chain):
        """Sets the encrypt_chain of this CertificateForGetSubInstanceOutput.


        :param encrypt_chain: The encrypt_chain of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :type: list[str]
        """

        self._encrypt_chain = encrypt_chain

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


        :return: The encrypt_key of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :rtype: str
        """
        return self._encrypt_key

    @encrypt_key.setter
    def encrypt_key(self, encrypt_key):
        """Sets the encrypt_key of this CertificateForGetSubInstanceOutput.


        :param encrypt_key: The encrypt_key of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :type: str
        """

        self._encrypt_key = encrypt_key

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


        :return: The key of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :rtype: str
        """
        return self._key

    @key.setter
    def key(self, key):
        """Sets the key of this CertificateForGetSubInstanceOutput.


        :param key: The key of this CertificateForGetSubInstanceOutput.  # noqa: E501
        :type: str
        """

        self._key = key

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

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