Class: FacebookAds::ServerSide::Event

Inherits:
Object
  • Object
show all
Defined in:
lib/facebook_ads/ad_objects/server_side/event.rb

Overview

Server Side Event object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(event_name: nil, event_time: nil, event_source_url: nil, opt_out: nil, event_id: nil, user_data: nil, custom_data: nil, data_processing_options: nil, data_processing_options_country: nil, data_processing_options_state: nil, action_source: nil) ⇒ Event

Returns a new instance of Event.

Parameters:

  • event_name (String) (defaults to: nil)
  • event_time (int) (defaults to: nil)
  • event_source_url (String) (defaults to: nil)
  • opt_out (Boolean) (defaults to: nil)
  • event_id (String) (defaults to: nil)
  • user_data (FacebookAds::ServerSide::UserData) (defaults to: nil)
  • custom_data (FacebookAds::ServerSide::CustomData) (defaults to: nil)
  • data_processing_options (Array<String>) (defaults to: nil)
  • data_processing_options_country (int) (defaults to: nil)
  • data_processing_options_state (int) (defaults to: nil)
  • String

    action_source



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 81

def initialize(event_name: nil,
               event_time: nil,
               event_source_url: nil,
               opt_out: nil,
               event_id: nil,
               user_data: nil,
               custom_data: nil,
               data_processing_options: nil,
               data_processing_options_country: nil,
               data_processing_options_state: nil,
               action_source: nil)

  unless event_name.nil?
    self.event_name = event_name
  end
  unless event_time.nil?
    self.event_time = event_time
  end
  unless event_source_url.nil?
    self.event_source_url = event_source_url
  end
  unless opt_out.nil?
    self.opt_out = opt_out
  end
  unless event_id.nil?
    self.event_id = event_id
  end
  unless user_data.nil?
    self.user_data = user_data
  end
  unless custom_data.nil?
    self.custom_data = custom_data
  end
  unless data_processing_options.nil?
    self.data_processing_options = data_processing_options
  end
  unless data_processing_options_country.nil?
    self.data_processing_options_country = data_processing_options_country
  end
  unless data_processing_options_state.nil?
    self.data_processing_options_state = data_processing_options_state
  end
  unless action_source.nil?
    self.action_source = action_source
  end
end

Instance Attribute Details

#action_sourceObject

Where the conversion occurred.



68
69
70
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 68

def action_source
  @action_source
end

#custom_dataObject

An Object that includes additional business data about the event.



53
54
55
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 53

def custom_data
  @custom_data
end

#data_processing_optionsObject

Processing options you would like to enable for a specific event. For more details see developers.facebook.com/docs/marketing-apis/data-processing-options



57
58
59
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 57

def data_processing_options
  @data_processing_options
end

#data_processing_options_countryObject

A country that you want to associate to this data processing option For more details see developers.facebook.com/docs/marketing-apis/data-processing-options



61
62
63
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 61

def data_processing_options_country
  @data_processing_options_country
end

#data_processing_options_stateObject

A state that you want to associate with this data processing option. For more details see developers.facebook.com/docs/marketing-apis/data-processing-options



65
66
67
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 65

def data_processing_options_state
  @data_processing_options_state
end

#event_idObject

This ID can be any unique string chosen by the advertiser. event_id is used to deduplicate events sent by both Facebook Pixel and Server-Side API. event_name is also used in the deduplication process. For deduplication, the eventID from Facebook pixel must match the event_id in the corresponding Server-Side API event.



47
48
49
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 47

def event_id
  @event_id
end

#event_nameObject

A Facebook pixel Standard Event or Custom Event name. This is used with event_id to determine if events are identical.



30
31
32
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 30

def event_name
  @event_name
end

#event_source_urlObject

The browser URL where the event happened.



36
37
38
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 36

def event_source_url
  @event_source_url
end

#event_timeObject

A Unix timestamp in seconds indicating when the actual event occurred.



33
34
35
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 33

def event_time
  @event_time
end

#opt_outObject

A flag that indicates we should not use this event for ads delivery optimization. If set to true, we only use the event for attribution.



40
41
42
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 40

def opt_out
  @opt_out
end

#user_dataObject

An Object that contains user data.



50
51
52
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 50

def user_data
  @user_data
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 210

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      event_name == o.event_name &&
      event_time == o.event_time &&
      event_source_url == o.event_source_url &&
      opt_out == o.opt_out &&
      event_id == o.event_id &&
      user_data == o.user_data &&
      custom_data == o.custom_data &&
      data_processing_options == o.data_processing_options &&
      data_processing_options_country == o.data_processing_options_country &&
      data_processing_options_state == o.data_processing_options_state &&
      action_source == o.action_source
end

#build(attributes = {}) ⇒ Object

build the object using the input hash

Parameters:

  • attributes (Hash) (defaults to: {})

    attributes in the form of hash



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 130

def build(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'event_name')
    self.event_name = attributes[:'event_name']
  end

  if attributes.has_key?(:'event_time')
    self.event_time = attributes[:'event_time']
  end

  if attributes.has_key?(:'event_source_url')
    self.event_source_url = attributes[:'event_source_url']
  end

  if attributes.has_key?(:'opt_out')
    self.opt_out = attributes[:'opt_out']
  end

  if attributes.has_key?(:'event_id')
    self.event_id = attributes[:'event_id']
  end

  if attributes.has_key?(:'user_data')
    self.user_data = attributes[:'user_data']
  end

  if attributes.has_key?(:'custom_data')
    self.custom_data = attributes[:'custom_data']
  end

  if attributes.has_key?(:'data_processing_options')
    self.data_processing_options = attributes[:'data_processing_options']
  end

  if attributes.has_key?(:'data_processing_options_country')
    self.data_processing_options_country = attributes[:'data_processing_options_country']
  end

  if attributes.has_key?(:'data_processing_options_state')
    self.data_processing_options_state = attributes[:'data_processing_options_state']
  end

  if attributes.has_key?(:'action_source')
    self.action_source = attributes[:'action_source']
  end
end

#eql?(o) ⇒ Boolean

Returns:

  • (Boolean)

See Also:

  • `==` method


227
228
229
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 227

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



233
234
235
236
237
238
239
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 233

def hash
  [
    event_name, event_time, event_source_url, opt_out, event_id, user_data, custom_data,
    data_processing_options, data_processing_options_country, data_processing_options_state,
    action_source,
  ].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 183

def list_invalid_properties
  invalid_properties = Array.new
  if @event_name.nil?
    invalid_properties.push('invalid value for "event_name", event_name cannot be nil.')
  end

  if @event_time.nil?
    invalid_properties.push('invalid value for "event_time", event_time cannot be nil.')
  end

  if @user_data.nil?
    invalid_properties.push('invalid value for "user_data", user_data cannot be nil.')
  end

  invalid_properties
end

#normalizeObject

Normalize input fields to server request format.



281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 281

def normalize
  hash = {}
  unless event_name.nil?
    hash['event_name'] = event_name
  end
  unless event_time.nil?
    hash['event_time'] = event_time
  end
  unless event_source_url.nil?
    hash['event_source_url'] = event_source_url
  end
  unless opt_out.nil?
    hash['opt_out'] = opt_out
  end
  unless event_id.nil?
    hash['event_id'] = event_id
  end
  unless user_data.nil?
    hash['user_data'] = user_data.normalize
  end
  unless custom_data.nil?
    hash['custom_data'] = custom_data.normalize
  end
  unless data_processing_options.nil?
    hash['data_processing_options'] = data_processing_options
  end
  unless data_processing_options_country.nil?
    hash['data_processing_options_country'] = data_processing_options_country
  end
  unless data_processing_options_state.nil?
    hash['data_processing_options_state'] = data_processing_options_state
  end
  unless action_source.nil?
    hash['action_source'] = FacebookAds::ServerSide::Util.normalize(
      action_source,
      'action_source'
    )
  end
  hash
end

#to_sObject



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 241

def to_s
  hash = {}
  unless event_name.nil?
    hash['event_name'] = event_name
  end
  unless event_time.nil?
    hash['event_time'] = event_time
  end
  unless event_source_url.nil?
    hash['event_source_url'] = event_source_url
  end
  unless opt_out.nil?
    hash['opt_out'] = opt_out
  end
  unless event_id.nil?
    hash['event_id'] = event_id
  end
  unless user_data.nil?
    hash['user_data'] = user_data.to_s
  end
  unless custom_data.nil?
    hash['custom_data'] = custom_data.to_s
  end
  unless data_processing_options.nil?
    hash['data_processing_options'] = data_processing_options.to_s
  end
  unless data_processing_options_country.nil?
    hash['data_processing_options_country'] = data_processing_options_country.to_s
  end
  unless data_processing_options_state.nil?
    hash['data_processing_options_state'] = data_processing_options_state.to_s
  end
  unless action_source.nil?
    hash['action_source'] = action_source
  end
  hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



202
203
204
205
206
207
# File 'lib/facebook_ads/ad_objects/server_side/event.rb', line 202

def valid?
  return false if @event_name.nil?
  return false if @event_time.nil?
  return false if @user_data.nil?
  true
end