Class: Google::Apis::DfareportingV2_8::CampaignCreativeAssociation
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_8::CampaignCreativeAssociation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Identifies a creative which has been associated with a given campaign.
Instance Attribute Summary collapse
-
#creative_id ⇒ Fixnum
ID of the creative associated with the campaign.
-
#kind ⇒ String
Identifies what kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CampaignCreativeAssociation
constructor
A new instance of CampaignCreativeAssociation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CampaignCreativeAssociation
Returns a new instance of CampaignCreativeAssociation
1665 1666 1667 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1665 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_id ⇒ Fixnum
ID of the creative associated with the campaign. This is a required field.
Corresponds to the JSON property creativeId
1657 1658 1659 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1657 def creative_id @creative_id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#campaignCreativeAssociation".
Corresponds to the JSON property kind
1663 1664 1665 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1663 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1670 1671 1672 1673 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 1670 def update!(**args) @creative_id = args[:creative_id] if args.key?(:creative_id) @kind = args[:kind] if args.key?(:kind) end |