Show / Hide Table of Contents

Class SelfRegistrationProfileUserAttributes

User Attributes

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

Properties

Deletable

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

If this attribute can be deleted
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: boolean
  • uniqueness: none

FullyQualifiedAttributeName

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

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none Fully Qualified Attribute Name

Metadata

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

Metadata of the user attribute
Added In: 18.1.6
SCIM++ Properties:

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

SeqNumber

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

SCIM++ Properties:

  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: integer
  • uniqueness: none Sequence Number for the attribute
Remarks

Required

Value

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

name of the attribute
SCIM++ Properties:

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

Required

In this article
Back to top