Show / Hide Table of Contents

Class SenderConfig

The sender information for email notifications sent by GovernanceInstance.

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

Properties

DisplayName

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

The sender's displayName.

Email

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

The sender's email.

IsInboxConfigured

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

Whether the sender email has inbox configured to receive emails.

IsVerified

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

Whether or not the sender's email has been verified.

TimeVerifyResponseExpiry

Declaration
[JsonProperty(PropertyName = "timeVerifyResponseExpiry")]
public DateTime? TimeVerifyResponseExpiry { get; set; }
Property Value
Type Description
DateTime?

The time when the verify response needs to be received by.

In this article
Back to top