Show / Hide Table of Contents

Class SecurityQuestionQuestionText

Locale values for the Question

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

Properties

Default

Declaration
[JsonProperty(PropertyName = "default")]
public bool? Default { get; set; }
Property Value
Type Description
bool?

If true, specifies that the localized attribute instance value is the default and will be returned if no localized value found for requesting user's preferred locale. One and only one instance should have this attribute set to true.
SCIM++ Properties:

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

Locale

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

The locale
SCIM++ Properties:

  • caseExact: false
  • idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(locale)"
  • idcsCanonicalValueSourceResourceType: AllowedValue
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: string
  • uniqueness: none
Remarks

Required

Value

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

The question text
SCIM++ Properties:

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

Required

In this article
Back to top