Class: Google::Apis::DfareportingV3_2::CampaignCreativeAssociation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb

Overview

Identifies a creative which has been associated with a given campaign.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CampaignCreativeAssociation

Returns a new instance of CampaignCreativeAssociation



1703
1704
1705
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 1703

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#creative_idFixnum

ID of the creative associated with the campaign. This is a required field. Corresponds to the JSON property creativeId

Returns:

  • (Fixnum)


1695
1696
1697
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 1695

def creative_id
  @creative_id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#campaignCreativeAssociation". Corresponds to the JSON property kind

Returns:

  • (String)


1701
1702
1703
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 1701

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1708
1709
1710
1711
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 1708

def update!(**args)
  @creative_id = args[:creative_id] if args.key?(:creative_id)
  @kind = args[:kind] if args.key?(:kind)
end