Show / Hide Table of Contents

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

Properties

DisplayName

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

Display name for the From email address
Added In: 19.2.1
SCIM++ Properties:

  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: string

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
Added In: 18.2.6
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
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
SCIM++ Properties:

  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: default
  • type: string

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
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
Remarks

Required

In this article
Back to top