Show / Hide Table of Contents

Class UserName

A complex attribute that contains attributes representing the name
SCIM++ Properties:

  • idcsCsvAttributeNameMappings: [[columnHeaderName:Formatted Name, mapsTo:name.formatted], [columnHeaderName:Honorific Prefix, mapsTo:name.honorificPrefix], [columnHeaderName:First Name, mapsTo:name.givenName], [columnHeaderName:Middle Name, mapsTo:name.middleName], [columnHeaderName:Last Name, mapsTo:name.familyName], [columnHeaderName:Honorific Suffix, mapsTo:name.honorificSuffix]]
  • idcsPii: true
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
UserName
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 UserName

Properties

FamilyName

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

Last name
SCIM++ Properties:

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

Formatted

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

Full name
SCIM++ Properties:

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

GivenName

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

First name
SCIM++ Properties:

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

HonorificPrefix

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

Prefix
SCIM++ Properties:

  • idcsCsvAttributeName: Honorific Prefix
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

HonorificSuffix

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

Suffix
SCIM++ Properties:

  • idcsCsvAttributeName: Honorific Suffix
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string
  • uniqueness: none

MiddleName

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

Middle name
SCIM++ Properties:

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