Show / Hide Table of Contents

Class User

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

Properties

Id

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

The user's Oracle ID (OCID).

Remarks

Required

IsMfaActivated

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

If mfa is activated.

Remarks

Required

IsMfaVerified

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

If the user has been mfa verified.

Remarks

Required

IsOTP

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

If the provided password is a one-time password.

Remarks

Required

Name

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

The name of the user.

Remarks

Required

In this article
Back to top