Class: Google::Apis::DisplayvideoV3::CmTrackingAd
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::CmTrackingAd
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Overview
A Campaign Manager 360 tracking ad.
Instance Attribute Summary collapse
-
#cm_ad_id ⇒ Fixnum
The ad ID of the campaign manager 360 tracking Ad.
-
#cm_creative_id ⇒ Fixnum
The creative ID of the campaign manager 360 tracking Ad.
-
#cm_placement_id ⇒ Fixnum
The placement ID of the campaign manager 360 tracking Ad.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CmTrackingAd
constructor
A new instance of CmTrackingAd.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CmTrackingAd
Returns a new instance of CmTrackingAd.
3555 3556 3557 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3555 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cm_ad_id ⇒ Fixnum
The ad ID of the campaign manager 360 tracking Ad.
Corresponds to the JSON property cmAdId
3543 3544 3545 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3543 def cm_ad_id @cm_ad_id end |
#cm_creative_id ⇒ Fixnum
The creative ID of the campaign manager 360 tracking Ad.
Corresponds to the JSON property cmCreativeId
3548 3549 3550 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3548 def cm_creative_id @cm_creative_id end |
#cm_placement_id ⇒ Fixnum
The placement ID of the campaign manager 360 tracking Ad.
Corresponds to the JSON property cmPlacementId
3553 3554 3555 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3553 def cm_placement_id @cm_placement_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3560 3561 3562 3563 3564 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3560 def update!(**args) @cm_ad_id = args[:cm_ad_id] if args.key?(:cm_ad_id) @cm_creative_id = args[:cm_creative_id] if args.key?(:cm_creative_id) @cm_placement_id = args[:cm_placement_id] if args.key?(:cm_placement_id) end |