# coding: utf-8

"""
    vepfs

    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 AuditForDescribeAuditsOutput(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 = {
        'audit_events': 'list[str]',
        'audit_id': 'str',
        'audit_name': 'str',
        'create_time': 'str',
        'file_system_id': 'str',
        'file_system_name': 'str',
        'fileset_infos': 'list[FilesetInfoForDescribeAuditsOutput]',
        'modify_time': 'str',
        'status': 'str',
        'store_type': 'str',
        'tls_project_id': 'str',
        'tls_project_name': 'str',
        'tls_topic_id': 'str',
        'tls_topic_name': 'str',
        'zone_id': 'str'
    }

    attribute_map = {
        'audit_events': 'AuditEvents',
        'audit_id': 'AuditId',
        'audit_name': 'AuditName',
        'create_time': 'CreateTime',
        'file_system_id': 'FileSystemId',
        'file_system_name': 'FileSystemName',
        'fileset_infos': 'FilesetInfos',
        'modify_time': 'ModifyTime',
        'status': 'Status',
        'store_type': 'StoreType',
        'tls_project_id': 'TlsProjectId',
        'tls_project_name': 'TlsProjectName',
        'tls_topic_id': 'TlsTopicId',
        'tls_topic_name': 'TlsTopicName',
        'zone_id': 'ZoneId'
    }

    def __init__(self, audit_events=None, audit_id=None, audit_name=None, create_time=None, file_system_id=None, file_system_name=None, fileset_infos=None, modify_time=None, status=None, store_type=None, tls_project_id=None, tls_project_name=None, tls_topic_id=None, tls_topic_name=None, zone_id=None, _configuration=None):  # noqa: E501
        """AuditForDescribeAuditsOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._audit_events = None
        self._audit_id = None
        self._audit_name = None
        self._create_time = None
        self._file_system_id = None
        self._file_system_name = None
        self._fileset_infos = None
        self._modify_time = None
        self._status = None
        self._store_type = None
        self._tls_project_id = None
        self._tls_project_name = None
        self._tls_topic_id = None
        self._tls_topic_name = None
        self._zone_id = None
        self.discriminator = None

        if audit_events is not None:
            self.audit_events = audit_events
        if audit_id is not None:
            self.audit_id = audit_id
        if audit_name is not None:
            self.audit_name = audit_name
        if create_time is not None:
            self.create_time = create_time
        if file_system_id is not None:
            self.file_system_id = file_system_id
        if file_system_name is not None:
            self.file_system_name = file_system_name
        if fileset_infos is not None:
            self.fileset_infos = fileset_infos
        if modify_time is not None:
            self.modify_time = modify_time
        if status is not None:
            self.status = status
        if store_type is not None:
            self.store_type = store_type
        if tls_project_id is not None:
            self.tls_project_id = tls_project_id
        if tls_project_name is not None:
            self.tls_project_name = tls_project_name
        if tls_topic_id is not None:
            self.tls_topic_id = tls_topic_id
        if tls_topic_name is not None:
            self.tls_topic_name = tls_topic_name
        if zone_id is not None:
            self.zone_id = zone_id

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


        :return: The audit_events of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: list[str]
        """
        return self._audit_events

    @audit_events.setter
    def audit_events(self, audit_events):
        """Sets the audit_events of this AuditForDescribeAuditsOutput.


        :param audit_events: The audit_events of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: list[str]
        """

        self._audit_events = audit_events

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


        :return: The audit_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._audit_id

    @audit_id.setter
    def audit_id(self, audit_id):
        """Sets the audit_id of this AuditForDescribeAuditsOutput.


        :param audit_id: The audit_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._audit_id = audit_id

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


        :return: The audit_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._audit_name

    @audit_name.setter
    def audit_name(self, audit_name):
        """Sets the audit_name of this AuditForDescribeAuditsOutput.


        :param audit_name: The audit_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._audit_name = audit_name

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


        :return: The create_time of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._create_time

    @create_time.setter
    def create_time(self, create_time):
        """Sets the create_time of this AuditForDescribeAuditsOutput.


        :param create_time: The create_time of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._create_time = create_time

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


        :return: The file_system_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._file_system_id

    @file_system_id.setter
    def file_system_id(self, file_system_id):
        """Sets the file_system_id of this AuditForDescribeAuditsOutput.


        :param file_system_id: The file_system_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._file_system_id = file_system_id

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


        :return: The file_system_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._file_system_name

    @file_system_name.setter
    def file_system_name(self, file_system_name):
        """Sets the file_system_name of this AuditForDescribeAuditsOutput.


        :param file_system_name: The file_system_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._file_system_name = file_system_name

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


        :return: The fileset_infos of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: list[FilesetInfoForDescribeAuditsOutput]
        """
        return self._fileset_infos

    @fileset_infos.setter
    def fileset_infos(self, fileset_infos):
        """Sets the fileset_infos of this AuditForDescribeAuditsOutput.


        :param fileset_infos: The fileset_infos of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: list[FilesetInfoForDescribeAuditsOutput]
        """

        self._fileset_infos = fileset_infos

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


        :return: The modify_time of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._modify_time

    @modify_time.setter
    def modify_time(self, modify_time):
        """Sets the modify_time of this AuditForDescribeAuditsOutput.


        :param modify_time: The modify_time of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._modify_time = modify_time

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


        :return: The status of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._status

    @status.setter
    def status(self, status):
        """Sets the status of this AuditForDescribeAuditsOutput.


        :param status: The status of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._status = status

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


        :return: The store_type of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._store_type

    @store_type.setter
    def store_type(self, store_type):
        """Sets the store_type of this AuditForDescribeAuditsOutput.


        :param store_type: The store_type of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._store_type = store_type

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


        :return: The tls_project_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._tls_project_id

    @tls_project_id.setter
    def tls_project_id(self, tls_project_id):
        """Sets the tls_project_id of this AuditForDescribeAuditsOutput.


        :param tls_project_id: The tls_project_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._tls_project_id = tls_project_id

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


        :return: The tls_project_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._tls_project_name

    @tls_project_name.setter
    def tls_project_name(self, tls_project_name):
        """Sets the tls_project_name of this AuditForDescribeAuditsOutput.


        :param tls_project_name: The tls_project_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._tls_project_name = tls_project_name

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


        :return: The tls_topic_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._tls_topic_id

    @tls_topic_id.setter
    def tls_topic_id(self, tls_topic_id):
        """Sets the tls_topic_id of this AuditForDescribeAuditsOutput.


        :param tls_topic_id: The tls_topic_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._tls_topic_id = tls_topic_id

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


        :return: The tls_topic_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._tls_topic_name

    @tls_topic_name.setter
    def tls_topic_name(self, tls_topic_name):
        """Sets the tls_topic_name of this AuditForDescribeAuditsOutput.


        :param tls_topic_name: The tls_topic_name of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._tls_topic_name = tls_topic_name

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


        :return: The zone_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :rtype: str
        """
        return self._zone_id

    @zone_id.setter
    def zone_id(self, zone_id):
        """Sets the zone_id of this AuditForDescribeAuditsOutput.


        :param zone_id: The zone_id of this AuditForDescribeAuditsOutput.  # noqa: E501
        :type: str
        """

        self._zone_id = zone_id

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

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