# coding: utf-8

"""
    aidap

    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 AccountForDescribeDBAccountsOutput(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 = {
        'account_desc': 'str',
        'account_name': 'str',
        'branch_id': 'str',
        'create_time': 'str',
        'update_time': 'str',
        'workspace_id': 'str'
    }

    attribute_map = {
        'account_desc': 'AccountDesc',
        'account_name': 'AccountName',
        'branch_id': 'BranchId',
        'create_time': 'CreateTime',
        'update_time': 'UpdateTime',
        'workspace_id': 'WorkspaceId'
    }

    def __init__(self, account_desc=None, account_name=None, branch_id=None, create_time=None, update_time=None, workspace_id=None, _configuration=None):  # noqa: E501
        """AccountForDescribeDBAccountsOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._account_desc = None
        self._account_name = None
        self._branch_id = None
        self._create_time = None
        self._update_time = None
        self._workspace_id = None
        self.discriminator = None

        if account_desc is not None:
            self.account_desc = account_desc
        if account_name is not None:
            self.account_name = account_name
        if branch_id is not None:
            self.branch_id = branch_id
        if create_time is not None:
            self.create_time = create_time
        if update_time is not None:
            self.update_time = update_time
        if workspace_id is not None:
            self.workspace_id = workspace_id

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


        :return: The account_desc of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :rtype: str
        """
        return self._account_desc

    @account_desc.setter
    def account_desc(self, account_desc):
        """Sets the account_desc of this AccountForDescribeDBAccountsOutput.


        :param account_desc: The account_desc of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :type: str
        """

        self._account_desc = account_desc

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


        :return: The account_name of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :rtype: str
        """
        return self._account_name

    @account_name.setter
    def account_name(self, account_name):
        """Sets the account_name of this AccountForDescribeDBAccountsOutput.


        :param account_name: The account_name of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :type: str
        """

        self._account_name = account_name

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


        :return: The branch_id of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :rtype: str
        """
        return self._branch_id

    @branch_id.setter
    def branch_id(self, branch_id):
        """Sets the branch_id of this AccountForDescribeDBAccountsOutput.


        :param branch_id: The branch_id of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :type: str
        """

        self._branch_id = branch_id

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


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

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


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

        self._create_time = create_time

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


        :return: The update_time of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :rtype: str
        """
        return self._update_time

    @update_time.setter
    def update_time(self, update_time):
        """Sets the update_time of this AccountForDescribeDBAccountsOutput.


        :param update_time: The update_time of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :type: str
        """

        self._update_time = update_time

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


        :return: The workspace_id of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :rtype: str
        """
        return self._workspace_id

    @workspace_id.setter
    def workspace_id(self, workspace_id):
        """Sets the workspace_id of this AccountForDescribeDBAccountsOutput.


        :param workspace_id: The workspace_id of this AccountForDescribeDBAccountsOutput.  # noqa: E501
        :type: str
        """

        self._workspace_id = workspace_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(AccountForDescribeDBAccountsOutput, 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, AccountForDescribeDBAccountsOutput):
            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, AccountForDescribeDBAccountsOutput):
            return True

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