Class: Google::Apis::DfareportingV4::CreativeCustomEvent
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::CreativeCustomEvent
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
Creative Custom Event.
Instance Attribute Summary collapse
-
#advertiser_custom_event_id ⇒ Fixnum
Unique ID of this event used by Reporting and Data Transfer.
-
#advertiser_custom_event_name ⇒ String
User-entered name for the event.
-
#advertiser_custom_event_type ⇒ String
Type of the event.
-
#artwork_label ⇒ String
Artwork label column, used to link events in Campaign Manager back to events in Studio.
-
#artwork_type ⇒ String
Artwork type used by the creative.This is a read-only field.
-
#exit_click_through_url ⇒ Google::Apis::DfareportingV4::CreativeClickThroughUrl
Click-through URL Corresponds to the JSON property
exitClickThroughUrl
. -
#id ⇒ Fixnum
ID of this event.
-
#popup_window_properties ⇒ Google::Apis::DfareportingV4::PopupWindowProperties
Popup Window Properties.
-
#target_type ⇒ String
Target type used by the event.
-
#video_reporting_id ⇒ String
Video reporting ID, used to differentiate multiple videos in a single creative.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreativeCustomEvent
constructor
A new instance of CreativeCustomEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreativeCustomEvent
Returns a new instance of CreativeCustomEvent.
4528 4529 4530 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4528 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advertiser_custom_event_id ⇒ Fixnum
Unique ID of this event used by Reporting and Data Transfer. This is a read-
only field.
Corresponds to the JSON property advertiserCustomEventId
4478 4479 4480 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4478 def advertiser_custom_event_id @advertiser_custom_event_id end |
#advertiser_custom_event_name ⇒ String
User-entered name for the event.
Corresponds to the JSON property advertiserCustomEventName
4483 4484 4485 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4483 def advertiser_custom_event_name @advertiser_custom_event_name end |
#advertiser_custom_event_type ⇒ String
Type of the event. This is a read-only field.
Corresponds to the JSON property advertiserCustomEventType
4488 4489 4490 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4488 def advertiser_custom_event_type @advertiser_custom_event_type end |
#artwork_label ⇒ String
Artwork label column, used to link events in Campaign Manager back to events
in Studio. This is a required field and should not be modified after insertion.
Corresponds to the JSON property artworkLabel
4494 4495 4496 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4494 def artwork_label @artwork_label end |
#artwork_type ⇒ String
Artwork type used by the creative.This is a read-only field.
Corresponds to the JSON property artworkType
4499 4500 4501 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4499 def artwork_type @artwork_type end |
#exit_click_through_url ⇒ Google::Apis::DfareportingV4::CreativeClickThroughUrl
Click-through URL
Corresponds to the JSON property exitClickThroughUrl
4504 4505 4506 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4504 def exit_click_through_url @exit_click_through_url end |
#id ⇒ Fixnum
ID of this event. This is a required field and should not be modified after
insertion.
Corresponds to the JSON property id
4510 4511 4512 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4510 def id @id end |
#popup_window_properties ⇒ Google::Apis::DfareportingV4::PopupWindowProperties
Popup Window Properties.
Corresponds to the JSON property popupWindowProperties
4515 4516 4517 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4515 def popup_window_properties @popup_window_properties end |
#target_type ⇒ String
Target type used by the event.
Corresponds to the JSON property targetType
4520 4521 4522 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4520 def target_type @target_type end |
#video_reporting_id ⇒ String
Video reporting ID, used to differentiate multiple videos in a single creative.
This is a read-only field.
Corresponds to the JSON property videoReportingId
4526 4527 4528 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4526 def video_reporting_id @video_reporting_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 4533 def update!(**args) @advertiser_custom_event_id = args[:advertiser_custom_event_id] if args.key?(:advertiser_custom_event_id) @advertiser_custom_event_name = args[:advertiser_custom_event_name] if args.key?(:advertiser_custom_event_name) @advertiser_custom_event_type = args[:advertiser_custom_event_type] if args.key?(:advertiser_custom_event_type) @artwork_label = args[:artwork_label] if args.key?(:artwork_label) @artwork_type = args[:artwork_type] if args.key?(:artwork_type) @exit_click_through_url = args[:exit_click_through_url] if args.key?(:exit_click_through_url) @id = args[:id] if args.key?(:id) @popup_window_properties = args[:popup_window_properties] if args.key?(:popup_window_properties) @target_type = args[:target_type] if args.key?(:target_type) @video_reporting_id = args[:video_reporting_id] if args.key?(:video_reporting_id) end |