Show / Hide Table of Contents

Class UserExtSelfRegistrationProfile

Self registration profile used when user is self registered.
SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: immutable
  • required: true
  • returned: request
  • type: complex
  • uniqueness: none
Inheritance
object
UserExtSelfRegistrationProfile
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 UserExtSelfRegistrationProfile

Properties

Display

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

A human readable name, primarily used for display purposes. READ-ONLY.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: request
  • type: string
  • uniqueness: none

Ref

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

URI of the profile.
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

Self Registration Profile Id
SCIM++ Properties:

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

Required

In this article
Back to top