Show / Hide Table of Contents

Class UserExtSecQuestions

The schema used to mnage security question and answers provided by a user for account recovery and/or MFA. While setting up security questions, a user can also provide a hint for the answer.
SCIM++ Properties:

  • idcsCompositeKey: [value]
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
Inheritance
object
UserExtSecQuestions
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 UserExtSecQuestions

Properties

Answer

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

The answer provided by a user for a security question.
SCIM++ Properties:

  • idcsCsvAttributeName: Answer
  • idcsSearchable: false
  • idcsSensitive: hash
  • multiValued: false
  • mutability: writeOnly
  • required: true
  • returned: never
  • type: string
  • uniqueness: none
  • idcsPii: true
Remarks

Required

HintText

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

The hint for an answer that's given by user when setting up a security question.
SCIM++ Properties:

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

Ref

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

The URI of the corresponding Security Question resource.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: reference
  • uniqueness: none

Value

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

The identifier of the question selected by the user when setting up a security question.
SCIM++ Properties:

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

Required

In this article
Back to top