Show / Hide Table of Contents

Class CommonPrincipal

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

Properties

Tenant

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

The tenant.

Remarks

Required

User

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

The user.

Remarks

Required

In this article
Back to top