Show / Hide Table of Contents

Class BadUserStateAuthenticateUserResult

Inheritance
object
BadUserStateAuthenticateUserResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydataplaneService.Models
Assembly: OCI.DotNetSDK.Identitydataplane.dll
Syntax
public class BadUserStateAuthenticateUserResult

Properties

ResolvedTenantId

Declaration
[Required(ErrorMessage = "ResolvedTenantId is required.")]
[JsonProperty(PropertyName = "resolvedTenantId")]
public string ResolvedTenantId { get; set; }
Property Value
Type Description
string

The resolved tenant id.

Remarks

Required

ResolvedUserId

Declaration
[Required(ErrorMessage = "ResolvedUserId is required.")]
[JsonProperty(PropertyName = "resolvedUserId")]
public string ResolvedUserId { get; set; }
Property Value
Type Description
string

The resolved user id.

Remarks

Required

TenantInput

Declaration
[Required(ErrorMessage = "TenantInput is required.")]
[JsonProperty(PropertyName = "tenantInput")]
public string TenantInput { get; set; }
Property Value
Type Description
string

The tenant name.

Remarks

Required

UserInput

Declaration
[Required(ErrorMessage = "UserInput is required.")]
[JsonProperty(PropertyName = "userInput")]
public string UserInput { get; set; }
Property Value
Type Description
string

The user name.

Remarks

Required

UserState

Declaration
[Required(ErrorMessage = "UserState is required.")]
[JsonProperty(PropertyName = "userState")]
[JsonConverter(typeof(StringEnumConverter))]
public BadUserStateAuthenticateUserResult.UserStateEnum? UserState { get; set; }
Property Value
Type Description
BadUserStateAuthenticateUserResult.UserStateEnum?

The bad user state.

Remarks

Required

In this article
Back to top