# coding: utf-8

"""
    sts

    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 GetCallerIdentityResponse(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_id': 'int',
        'identity_id': 'str',
        'identity_type': 'str',
        'trn': 'str'
    }

    attribute_map = {
        'account_id': 'AccountId',
        'identity_id': 'IdentityId',
        'identity_type': 'IdentityType',
        'trn': 'Trn'
    }

    def __init__(self, account_id=None, identity_id=None, identity_type=None, trn=None, _configuration=None):  # noqa: E501
        """GetCallerIdentityResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._account_id = None
        self._identity_id = None
        self._identity_type = None
        self._trn = None
        self.discriminator = None

        if account_id is not None:
            self.account_id = account_id
        if identity_id is not None:
            self.identity_id = identity_id
        if identity_type is not None:
            self.identity_type = identity_type
        if trn is not None:
            self.trn = trn

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


        :return: The account_id of this GetCallerIdentityResponse.  # noqa: E501
        :rtype: int
        """
        return self._account_id

    @account_id.setter
    def account_id(self, account_id):
        """Sets the account_id of this GetCallerIdentityResponse.


        :param account_id: The account_id of this GetCallerIdentityResponse.  # noqa: E501
        :type: int
        """

        self._account_id = account_id

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


        :return: The identity_id of this GetCallerIdentityResponse.  # noqa: E501
        :rtype: str
        """
        return self._identity_id

    @identity_id.setter
    def identity_id(self, identity_id):
        """Sets the identity_id of this GetCallerIdentityResponse.


        :param identity_id: The identity_id of this GetCallerIdentityResponse.  # noqa: E501
        :type: str
        """

        self._identity_id = identity_id

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


        :return: The identity_type of this GetCallerIdentityResponse.  # noqa: E501
        :rtype: str
        """
        return self._identity_type

    @identity_type.setter
    def identity_type(self, identity_type):
        """Sets the identity_type of this GetCallerIdentityResponse.


        :param identity_type: The identity_type of this GetCallerIdentityResponse.  # noqa: E501
        :type: str
        """

        self._identity_type = identity_type

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


        :return: The trn of this GetCallerIdentityResponse.  # noqa: E501
        :rtype: str
        """
        return self._trn

    @trn.setter
    def trn(self, trn):
        """Sets the trn of this GetCallerIdentityResponse.


        :param trn: The trn of this GetCallerIdentityResponse.  # noqa: E501
        :type: str
        """

        self._trn = trn

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

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