Class NotificationSettingsFromEmailAddress
From email address to be used in the notification emails
SCIM++ Properties:
- caseExact: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: complex
- uniqueness: none
Inherited Members
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class NotificationSettingsFromEmailAddress
Properties
DisplayName
Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | Display name for the From email address
|
Validate
Declaration
[Required(ErrorMessage = "Validate is required.")]
[JsonProperty(PropertyName = "validate")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NotificationSettingsFromEmailAddress.ValidateEnum? Validate { get; set; }
Property Value
Type | Description |
---|---|
NotificationSettingsFromEmailAddress.ValidateEnum? | From address verification mode. If postmaster account is available then 'domain' mode is used or entire valid email can be verified using 'email' mode
|
Remarks
Required
ValidationStatus
Declaration
[JsonProperty(PropertyName = "validationStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public NotificationSettingsFromEmailAddress.ValidationStatusEnum? ValidationStatus { get; set; }
Property Value
Type | Description |
---|---|
NotificationSettingsFromEmailAddress.ValidationStatusEnum? | Validation status for the From email address
|
Value
Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string | Value of the From email address
|
Remarks
Required