Show / Hide Table of Contents

Class MyAuthenticationFactorValidatorSecurityQuestions

List of security questions the user has submitted to get authenticated.

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

Properties

Answer

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

Answer of the security question the user has submitted
SCIM++ Properties:

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

Id

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

id of the security question
SCIM++ Properties:

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

Required

In this article
Back to top