Class: TheTradeDeskAds::AdTargeting
- Inherits:
-
Object
- Object
- TheTradeDeskAds::AdTargeting
- Defined in:
- lib/the_trade_desk_ads/ad_targeting.rb
Overview
Constant Summary collapse
- MEN =
1- WOMEN =
2- GENDERS =
[MEN, WOMEN].freeze
- ANDROID_OS =
'Android'.freeze
- APPLE_OS =
'iOS'.freeze
- OSES =
[ANDROID_OS, APPLE_OS].freeze
- ANDROID_DEVICES =
%w[Android_Smartphone Android_Tablet].freeze
- APPLE_DEVICES =
%w[iPhone iPad iPod].freeze
- DEVICES =
ANDROID_DEVICES + APPLE_DEVICES
- INSTALLED =
'installed'.freeze
- NOT_INSTALLED =
'not_installed'.freeze
- APP_INSTALL_STATES =
[INSTALLED, NOT_INSTALLED].freeze
Instance Attribute Summary collapse
-
#age_max ⇒ Object
Returns the value of attribute age_max.
-
#age_min ⇒ Object
Returns the value of attribute age_min.
-
#app_install_state ⇒ Object
Returns the value of attribute app_install_state.
-
#countries ⇒ Object
Returns the value of attribute countries.
-
#genders ⇒ Object
Returns the value of attribute genders.
-
#user_device ⇒ Object
Returns the value of attribute user_device.
-
#user_os ⇒ Object
Returns the value of attribute user_os.
Instance Method Summary collapse
-
#initialize ⇒ AdTargeting
constructor
A new instance of AdTargeting.
- #to_hash ⇒ Object
- #validate! ⇒ Object
Constructor Details
#initialize ⇒ AdTargeting
Returns a new instance of AdTargeting.
19 20 21 22 23 24 25 26 27 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 19 def initialize # self.genders = [WOMEN] # If nil, defaults to all genders. # self.age_min = 18 # If nil, defaults to 18. # self.age_max = 65 # If nil, defaults to 65+. self.countries = ['US'] # self.user_os = [ANDROID_OS] # self.user_device = ANDROID_DEVICES # self.app_install_state = NOT_INSTALLED end |
Instance Attribute Details
#age_max ⇒ Object
Returns the value of attribute age_max.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def age_max @age_max end |
#age_min ⇒ Object
Returns the value of attribute age_min.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def age_min @age_min end |
#app_install_state ⇒ Object
Returns the value of attribute app_install_state.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def app_install_state @app_install_state end |
#countries ⇒ Object
Returns the value of attribute countries.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def countries @countries end |
#genders ⇒ Object
Returns the value of attribute genders.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def genders @genders end |
#user_device ⇒ Object
Returns the value of attribute user_device.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def user_device @user_device end |
#user_os ⇒ Object
Returns the value of attribute user_os.
17 18 19 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 17 def user_os @user_os end |
Instance Method Details
#to_hash ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 47 def to_hash { genders: genders, age_min: age_min, age_max: age_max, geo_locations: { countries: countries }, user_os: user_os, user_device: user_device, app_install_state: app_install_state }.reject { |_k, v| v.nil? } end |
#validate! ⇒ Object
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/the_trade_desk_ads/ad_targeting.rb', line 29 def validate! { gender: genders, countries: countries, user_os: user_os, user_device: user_device }.each_pair do |key, array| if !array.nil? && !array.is_a?(Array) raise Exception, "#{self.class.name}: #{key} must be an array" end end { genders: [genders, GENDERS], user_os: [user_os, OSES], user_device: [user_device, DEVICES] }.each_pair do |key, provided_and_acceptable| provided, acceptable = provided_and_acceptable if !provided.nil? && !(invalid = provided.detect { |value| !acceptable.include?(value) }).nil? raise Exception, "#{self.class.name}: #{invalid} is an invalid #{key}" end end true end |