Class: Google::Apis::DfareportingV2_6::Report::Delivery
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_6::Report::Delivery
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/representations.rb
Overview
The report's email delivery settings.
Instance Attribute Summary collapse
-
#email_owner ⇒ Boolean
(also: #email_owner?)
Whether the report should be emailed to the report owner.
-
#email_owner_delivery_type ⇒ String
The type of delivery for the owner to receive, if enabled.
-
#message ⇒ String
The message to be sent with each email.
-
#recipients ⇒ Array<Google::Apis::DfareportingV2_6::Recipient>
The list of recipients to which to email the report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Delivery
constructor
A new instance of Delivery.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Delivery
Returns a new instance of Delivery
9682 9683 9684 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9682 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email_owner ⇒ Boolean Also known as: email_owner?
Whether the report should be emailed to the report owner.
Corresponds to the JSON property emailOwner
9664 9665 9666 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9664 def email_owner @email_owner end |
#email_owner_delivery_type ⇒ String
The type of delivery for the owner to receive, if enabled.
Corresponds to the JSON property emailOwnerDeliveryType
9670 9671 9672 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9670 def email_owner_delivery_type @email_owner_delivery_type end |
#message ⇒ String
The message to be sent with each email.
Corresponds to the JSON property message
9675 9676 9677 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9675 def @message end |
#recipients ⇒ Array<Google::Apis::DfareportingV2_6::Recipient>
The list of recipients to which to email the report.
Corresponds to the JSON property recipients
9680 9681 9682 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9680 def recipients @recipients end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9687 9688 9689 9690 9691 9692 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 9687 def update!(**args) @email_owner = args[:email_owner] if args.key?(:email_owner) @email_owner_delivery_type = args[:email_owner_delivery_type] if args.key?(:email_owner_delivery_type) @message = args[:message] if args.key?(:message) @recipients = args[:recipients] if args.key?(:recipients) end |