class Embulk::Input::YahooAds::AuthConfig
Public Class Methods
new(options)
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 5 def initialize(options) @location = options[:location] @version = options[:version] @license = options[:license] @api_account = options[:api_account] @api_password = options[:api_password] @namespace = options[:namespace] end
Public Instance Methods
api_account()
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 17 def api_account; @api_account end
api_password()
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 18 def api_password; @api_password end
license()
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 16 def license; @license end
location()
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 14 def location; @location end
namespace()
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 19 def namespace; @namespace end
version()
click to toggle source
# File lib/embulk/input/yahoo_ads/auth_config.rb, line 15 def version; @version end