Show / Hide Table of Contents

Class SchemaLocalizedCanonicalValues

A collection of Localized canonical values.

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

Properties

CanonicalValue

Declaration
[JsonProperty(PropertyName = "canonicalValue")]
public List<string> CanonicalValue { get; set; }
Property Value
Type Description
List<string>

Canonical values
SCIM++ Properties:

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

Locale

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

Locale used
SCIM++ Properties:

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

Value

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

Localized display value
SCIM++ Properties:

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