Show / Hide Table of Contents

Class CreateEmailRecipientsGroupDetails

The saved email recipient group to receive usage statement emails.

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

Properties

CompartmentId

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

The customer tenancy.

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