Show / Hide Table of Contents

Class SettingsLoginTexts

Login text in different locales

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

Properties

Locale

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

Locale
SCIM++ Properties:

  • idcsCanonicalValueSourceFilter: attrName eq "locales" and attrValues.value eq "$(loginTexts.locale)"
  • idcsCanonicalValueSourceResourceType: AllowedValue
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
Remarks

Required

Value

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

Login text
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • idcsSanitize: true
  • type: string
Remarks

Required

In this article
Back to top