Show / Hide Table of Contents

Class Report.DeliveryData

The report's email delivery settings.

Inheritance
System.Object
Report.DeliveryData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class DeliveryData

Properties

EmailOwner

Whether the report should be emailed to the report owner.

Declaration
[JsonProperty("emailOwner")]
public virtual bool? EmailOwner { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

EmailOwnerDeliveryType

The type of delivery for the owner to receive, if enabled.

Declaration
[JsonProperty("emailOwnerDeliveryType")]
public virtual string EmailOwnerDeliveryType { get; set; }
Property Value
Type Description
System.String

Message

The message to be sent with each email.

Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type Description
System.String

Recipients

The list of recipients to which to email the report.

Declaration
[JsonProperty("recipients")]
public virtual IList<Recipient> Recipients { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Recipient>
In This Article
Back to top