Class EmailRecipient
The email recipient to receive usage statements for the subscription.
Inherited Members
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 email of the recipient. |
Remarks
Required
FirstName
Declaration
[JsonProperty(PropertyName = "firstName")]
public string FirstName { get; set; }
Property Value
Type | Description |
---|---|
string | the first name of the recipient. |
LastName
Declaration
[JsonProperty(PropertyName = "lastName")]
public string LastName { get; set; }
Property Value
Type | Description |
---|---|
string | the last name of the recipient. |
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