Show / Hide Table of Contents

Class UpdateSenderConfig

Update to a sender information for email notifications sent by GovernanceInstance.

Inheritance
object
UpdateSenderConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AccessgovernancecpService.Models
Assembly: OCI.DotNetSDK.Accessgovernancecp.dll
Syntax
public class UpdateSenderConfig

Properties

DisplayName

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

The sender's displayName.

Email

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

The sender's email.

Remarks

Required

IsInboxConfigured

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

Whether the sender email has inbox configured to receive emails.

Remarks

Required

IsResendNotificationEmail

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

Whether there is a need to resend the verification email.

In this article
Back to top