Show / Hide Table of Contents

Class MfaTotpDeviceSummary

As the name suggests, a MfaTotpDeviceSummary object contains information about a MfaTotpDevice.

Inheritance
System.Object
MfaTotpDeviceSummary
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class MfaTotpDeviceSummary : object

Properties

Id

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String

The OCID of the MFA TOTP Device.

Remarks

Required

InactiveStatus

Declaration
public System.Nullable<long> InactiveStatus { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

The detailed status of INACTIVE lifecycleState. Allowed values are:

  • 1 - SUSPENDED
  • 2 - DISABLED
  • 4 - BLOCKED
  • 8 - LOCKED

IsActivated

Declaration
public System.Nullable<bool> IsActivated { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Flag to indicate if the MFA TOTP device has been activated

Remarks

Required

LifecycleState

Declaration
public System.Nullable<MfaTotpDeviceSummary.LifecycleStateEnum> LifecycleState { get; set; }
Property Value
Type Description
System.Nullable<MfaTotpDeviceSummary.LifecycleStateEnum>

The MFA TOTP device's current state.

Remarks

Required

TimeCreated

Declaration
public System.Nullable<System.DateTime> TimeCreated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time the MfaTotpDevice object was created, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeExpires

Declaration
public System.Nullable<System.DateTime> TimeExpires { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

Date and time when this MFA TOTP device will expire, in the format defined by RFC3339. Null if it never expires.
Example: 2016-08-25T21:10:29.600Z

UserId

Declaration
public string UserId { get; set; }
Property Value
Type Description
System.String

The OCID of the user the MFA TOTP device belongs to.

Remarks

Required

In This Article
Back to top