Show / Hide Table of Contents

Class SelfRegistrationProfileDisplayName

Registration page name

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

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:

  • 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

Type of user's locale e.g. en-CA
SCIM++ Properties:

  • caseExact: false
  • idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(type)"
  • idcsCanonicalValueSourceResourceType: AllowedValue
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • 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

Localized value of displayName in corresponding locale
SCIM++ Properties:

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

Required

In this article
Back to top