Show / Hide Table of Contents

Class AuthenticationPrincipal

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

Properties

Tenant

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

The tenancy object.

Remarks

Required

User

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

The user object.

Remarks

Required

In this article
Back to top