Class: Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation

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

Overview

The association between a creative and a deal.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreativeDealAssociation

Returns a new instance of CreativeDealAssociation.



861
862
863
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 861

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

Instance Attribute Details

#account_idString

The account the creative belongs to. Corresponds to the JSON property accountId

Returns:

  • (String)


849
850
851
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 849

def 
  @account_id
end

#creative_idString

The ID of the creative associated with the deal. Corresponds to the JSON property creativeId

Returns:

  • (String)


854
855
856
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 854

def creative_id
  @creative_id
end

#deals_idString

The externalDealId for the deal associated with the creative. Corresponds to the JSON property dealsId

Returns:

  • (String)


859
860
861
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 859

def deals_id
  @deals_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



866
867
868
869
870
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 866

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