Class UserEmails
A complex attribute representing emails
Inherited Members
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
|
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.
|
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.
|
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
|
Remarks
Required
Value
Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string | Email address
|
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
|