Show / Hide Table of Contents

Class ExtensionPasswordlessUser

This extension defines attributes used to manage Passwordless-Factor Authentication within a service provider. The extension is typically applied to a User resource, but MAY be applied to other resources that use MFA.

Inheritance
object
ExtensionPasswordlessUser
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class ExtensionPasswordlessUser

Properties

FactorIdentifier

Declaration
[JsonProperty(PropertyName = "factorIdentifier")]
public UserExtFactorIdentifier FactorIdentifier { get; set; }
Property Value
Type Description
UserExtFactorIdentifier

FactorMethod

Declaration
[JsonProperty(PropertyName = "factorMethod")]
public string FactorMethod { get; set; }
Property Value
Type Description
string

Authentication Factor Method
Added In: 2009232244
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

FactorType

Declaration
[JsonProperty(PropertyName = "factorType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExtensionPasswordlessUser.FactorTypeEnum? FactorType { get; set; }
Property Value
Type Description
ExtensionPasswordlessUser.FactorTypeEnum?

Authentication Factor Type
Added In: 20.1.3
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top