Show / Hide Table of Contents

Class ExtensionSelfRegistrationUser

This extension defines attributes used to manage self registration profile linked to the user.

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

Properties

ConsentGranted

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

A boolean value that indicates whether the consent is granted.
SCIM++ Properties:

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

SelfRegistrationProfile

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

Required

UserToken

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

User token used for auto-login.
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string
  • uniqueness: none
In this article
Back to top