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
Inherited Members
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
|
Formatted
Declaration
[JsonProperty(PropertyName = "formatted")]
public string Formatted { get; set; }
Property Value
Type | Description |
---|---|
string | Full name
|
GivenName
Declaration
[JsonProperty(PropertyName = "givenName")]
public string GivenName { get; set; }
Property Value
Type | Description |
---|---|
string | First name
|
HonorificPrefix
Declaration
[JsonProperty(PropertyName = "honorificPrefix")]
public string HonorificPrefix { get; set; }
Property Value
Type | Description |
---|---|
string | Prefix
|
HonorificSuffix
Declaration
[JsonProperty(PropertyName = "honorificSuffix")]
public string HonorificSuffix { get; set; }
Property Value
Type | Description |
---|---|
string | Suffix
|
MiddleName
Declaration
[JsonProperty(PropertyName = "middleName")]
public string MiddleName { get; set; }
Property Value
Type | Description |
---|---|
string | Middle name
|