class SoapyBing::Customer
Attributes
customer_id[R]
developer_token[R]
Public Class Methods
new(account_options)
click to toggle source
# File lib/soapy_bing/customer.rb, line 7 def initialize(account_options) param_guard = ParamGuard.new(account_options, env_namespace: 'BING_ADS') @developer_token = param_guard.require!(:developer_token) @customer_id = param_guard.require!(:customer_id) end