Show / Hide Table of Contents

Class EmailRecipient

The email recipient to receive usage statements for the subscription.

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

Properties

EmailId

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

The recipient email address.

Remarks

Required

FirstName

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

The recipient first name.

LastName

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

The recipient last name.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EmailRecipient.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
EmailRecipient.LifecycleStateEnum?

The email recipient lifecycle state.

Remarks

Required

In this article
Back to top