Class: Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation
- Inherits:
-
Object
- Object
- Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/adexchangebuyer2_v2beta1/classes.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb,
lib/google/apis/adexchangebuyer2_v2beta1/representations.rb
Overview
The association between a creative and a deal.
Instance Attribute Summary collapse
-
#account_id ⇒ String
The account the creative belongs to.
-
#creative_id ⇒ String
The ID of the creative associated with the deal.
-
#deals_id ⇒ String
The externalDealId for the deal associated with the creative.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreativeDealAssociation
constructor
A new instance of CreativeDealAssociation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreativeDealAssociation
Returns a new instance of CreativeDealAssociation.
862 863 864 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 862 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_id ⇒ String
The account the creative belongs to.
Corresponds to the JSON property accountId
850 851 852 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 850 def account_id @account_id end |
#creative_id ⇒ String
The ID of the creative associated with the deal.
Corresponds to the JSON property creativeId
855 856 857 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 855 def creative_id @creative_id end |
#deals_id ⇒ String
The externalDealId for the deal associated with the creative.
Corresponds to the JSON property dealsId
860 861 862 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 860 def deals_id @deals_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
867 868 869 870 871 |
# File 'lib/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 867 def update!(**args) @account_id = args[:account_id] if args.key?(:account_id) @creative_id = args[:creative_id] if args.key?(:creative_id) @deals_id = args[:deals_id] if args.key?(:deals_id) end |