class Google::Apis::Adexchangebuyer2V2beta1::CreativeDealAssociation

The association between a creative and a deal.

Attributes

account_id[RW]

The account the creative belongs to. Corresponds to the JSON property `accountId` @return [String]

creative_id[RW]

The ID of the creative associated with the deal. Corresponds to the JSON property `creativeId` @return [String]

deals_id[RW]

The externalDealId for the deal associated with the creative. Corresponds to the JSON property `dealsId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 861
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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