Show / Hide Table of Contents

Class ValidAuthenticateUserResult

Inheritance
object
ValidAuthenticateUserResult
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 ValidAuthenticateUserResult

Properties

ResolvedPrincipal

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

The resolved principal.

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

In this article
Back to top