class Google::Apis::DfareportingV3_4::Dv3Ids
DV360 IDs related to the custom event.
Attributes
dv_campaign_id[RW]
Campaign
ID for DV360. Corresponds to the JSON property `dvCampaignId` @return [Fixnum]
dv_creative_id[RW]
Creative
ID for DV360. Corresponds to the JSON property `dvCreativeId` @return [Fixnum]
dv_insertion_order_id[RW]
Insertion Order
ID for DV360. Corresponds to the JSON property `dvInsertionOrderId` @return [Fixnum]
dv_line_item_id[RW]
Line Item ID for DV360. Corresponds to the JSON property `dvLineItemId` @return [Fixnum]
dv_site_id[RW]
Site
ID for DV360. Corresponds to the JSON property `dvSiteId` @return [Fixnum]
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#dV3Ids”. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 5153 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 5158 def update!(**args) @dv_campaign_id = args[:dv_campaign_id] if args.key?(:dv_campaign_id) @dv_creative_id = args[:dv_creative_id] if args.key?(:dv_creative_id) @dv_insertion_order_id = args[:dv_insertion_order_id] if args.key?(:dv_insertion_order_id) @dv_line_item_id = args[:dv_line_item_id] if args.key?(:dv_line_item_id) @dv_site_id = args[:dv_site_id] if args.key?(:dv_site_id) @kind = args[:kind] if args.key?(:kind) end