class Google::Apis::DfareportingV3_4::CustomEventInsert

Custom event to be inserted.

Attributes

cm_dimensions[RW]

Campaign Manager IDs related to the custom event. Corresponds to the JSON property `cmDimensions` @return [Google::Apis::DfareportingV3_4::CampaignManagerIds]

dv3_dimensions[RW]

DV360 IDs related to the custom event. Corresponds to the JSON property `dv3Dimensions` @return [Google::Apis::DfareportingV3_4::Dv3Ids]

insert_event_type[RW]

The type of event to insert. Corresponds to the JSON property `insertEventType` @return [String]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#customEventInsert”. Corresponds to the JSON property `kind` @return [String]

match_id[RW]

The match ID field. A match ID is your own first-party identifier that has been synced with Google using the match ID feature in Floodlight. This field is mutually exclusive with mobileDeviceId, and at least one of the two fields is required. Corresponds to the JSON property `matchId` @return [String]

mobile_device_id[RW]

The mobile device ID. This field is mutually exclusive with matchId, and at least one of the two fields is required. Corresponds to the JSON property `mobileDeviceId` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 4840
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 4845
def update!(**args)
  @cm_dimensions = args[:cm_dimensions] if args.key?(:cm_dimensions)
  @dv3_dimensions = args[:dv3_dimensions] if args.key?(:dv3_dimensions)
  @insert_event_type = args[:insert_event_type] if args.key?(:insert_event_type)
  @kind = args[:kind] if args.key?(:kind)
  @match_id = args[:match_id] if args.key?(:match_id)
  @mobile_device_id = args[:mobile_device_id] if args.key?(:mobile_device_id)
end