Show / Hide Table of Contents

Class UserEmails

A complex attribute representing emails

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

Properties

PendingVerificationData

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

Pending e-mail address verification
Added In: 19.1.4
SCIM++ Properties:

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

Primary

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

A Boolean value that indicates whether the email address is the primary email address. The primary attribute value 'true' MUST appear no more than once.
SCIM++ Properties:

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

Secondary

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

A Boolean value that indicates whether the email address is the secondary email address. The secondary attribute value 'true' MUST appear no more than once.
Added In: 18.2.6
SCIM++ Properties:

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

Type

Declaration
[Required(ErrorMessage = "Type is required.")]
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UserEmails.TypeEnum? Type { get; set; }
Property Value
Type Description
UserEmails.TypeEnum?

Type of email address
SCIM++ Properties:

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

Required

Value

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

Email address
SCIM++ Properties:

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

Required

Verified

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

A Boolean value that indicates whether or not the e-mail address is verified
SCIM++ Properties:

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