class SoapyBing::Account

Attributes

account_id[R]
customer_id[R]
developer_token[R]

Public Class Methods

new(account_options) click to toggle source
# File lib/soapy_bing/account.rb, line 7
def initialize(account_options)
  param_guard = ParamGuard.new(account_options, env_namespace: 'BING_ADS')
  @developer_token = param_guard.require!(:developer_token)
  @account_id = param_guard.require!(:account_id)
  @customer_id = param_guard.require!(:customer_id)
end