# coding: utf-8
# Copyright (c) 2016, 2023, Oracle and/or its affiliates.  All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.

# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1


from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel  # noqa: F401
from oci.decorators import init_model_state_from_kwargs


@init_model_state_from_kwargs
class AuthenticateUserResult(object):
    """
    See ValidAuthenticateUserResult, BadUserStateAuthenticateUserResult, UserNotFoundAuthenticateUserResult, TenantNotFoundAuthenticateUserResult
    """

    def __init__(self, **kwargs):
        """
        Initializes a new AuthenticateUserResult object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param tenant_input:
            The value to assign to the tenant_input property of this AuthenticateUserResult.
        :type tenant_input: str

        :param user_input:
            The value to assign to the user_input property of this AuthenticateUserResult.
        :type user_input: str

        """
        self.swagger_types = {
            'tenant_input': 'str',
            'user_input': 'str'
        }

        self.attribute_map = {
            'tenant_input': 'tenantInput',
            'user_input': 'userInput'
        }

        self._tenant_input = None
        self._user_input = None

    @property
    def tenant_input(self):
        """
        **[Required]** Gets the tenant_input of this AuthenticateUserResult.
        The tenant name.


        :return: The tenant_input of this AuthenticateUserResult.
        :rtype: str
        """
        return self._tenant_input

    @tenant_input.setter
    def tenant_input(self, tenant_input):
        """
        Sets the tenant_input of this AuthenticateUserResult.
        The tenant name.


        :param tenant_input: The tenant_input of this AuthenticateUserResult.
        :type: str
        """
        self._tenant_input = tenant_input

    @property
    def user_input(self):
        """
        **[Required]** Gets the user_input of this AuthenticateUserResult.
        The user name.


        :return: The user_input of this AuthenticateUserResult.
        :rtype: str
        """
        return self._user_input

    @user_input.setter
    def user_input(self, user_input):
        """
        Sets the user_input of this AuthenticateUserResult.
        The user name.


        :param user_input: The user_input of this AuthenticateUserResult.
        :type: str
        """
        self._user_input = user_input

    def __repr__(self):
        return formatted_flat_dict(self)

    def __eq__(self, other):
        if other is None:
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        return not self == other
