Dropbox .NET SDK

Class TfaChangeStatusDetails

Enabled/disabled/changed two-factor authentication setting.

Inheritance
object
TfaChangeStatusDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Dropbox.Api.TeamLog
Assembly: Dropbox.Api.dll
Syntax
public class TfaChangeStatusDetails

Constructors

View Source

TfaChangeStatusDetails(TfaConfiguration, TfaConfiguration, bool?)

Initializes a new instance of the TfaChangeStatusDetails class.

Declaration
public TfaChangeStatusDetails(TfaConfiguration newValue, TfaConfiguration previousValue = null, bool? usedRescueCode = null)
Parameters
Type Name Description
TfaConfiguration newValue

The new two factor authentication configuration.

TfaConfiguration previousValue

The previous two factor authentication configuration. Might be missing due to historical data gap.

bool? usedRescueCode

Used two factor authentication rescue code. This flag is relevant when the two factor authentication configuration is disabled.

Properties

View Source

NewValue

The new two factor authentication configuration.

Declaration
public TfaConfiguration NewValue { get; protected set; }
Property Value
Type Description
TfaConfiguration
View Source

PreviousValue

The previous two factor authentication configuration. Might be missing due to historical data gap.

Declaration
public TfaConfiguration PreviousValue { get; protected set; }
Property Value
Type Description
TfaConfiguration
View Source

UsedRescueCode

Used two factor authentication rescue code. This flag is relevant when the two factor authentication configuration is disabled.

Declaration
public bool? UsedRescueCode { get; protected set; }
Property Value
Type Description
bool?
  • View Source
In this article
Back to top Dropbox .NET SDK