Show / Hide Table of Contents

Class EmailRecipientsGroup

The recipients group to receive usage statement emails.

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

Properties

CompartmentId

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

The customer tenancy OCID.

Remarks

Required

Id

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

The usage statement email recipients group OCID.

Remarks

Required

LifecycleState

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

The email recipients group lifecycle state.

Remarks

Required

RecipientsList

Declaration
[Required(ErrorMessage = "RecipientsList is required.")]
[JsonProperty(PropertyName = "recipientsList")]
public List<EmailRecipient> RecipientsList { get; set; }
Property Value
Type Description
List<EmailRecipient>

The list of recipients that will receive usage statement emails.

Remarks

Required

In this article
Back to top