Module: BingAdsRubySdk
- Defined in:
- lib/bing_ads_ruby_sdk.rb,
lib/bing_ads_ruby_sdk/api.rb,
lib/bing_ads_ruby_sdk/header.rb,
lib/bing_ads_ruby_sdk/version.rb,
lib/bing_ads_ruby_sdk/http_client.rb,
lib/bing_ads_ruby_sdk/log_message.rb,
lib/bing_ads_ruby_sdk/soap_client.rb,
lib/bing_ads_ruby_sdk/string_utils.rb,
lib/bing_ads_ruby_sdk/configuration.rb,
lib/bing_ads_ruby_sdk/errors/errors.rb,
lib/bing_ads_ruby_sdk/services/base.rb,
lib/bing_ads_ruby_sdk/services/bulk.rb,
lib/bing_ads_ruby_sdk/oauth2/fs_store.rb,
lib/bing_ads_ruby_sdk/augmented_parser.rb,
lib/bing_ads_ruby_sdk/services/reporting.rb,
lib/bing_ads_ruby_sdk/preprocessors/order.rb,
lib/bing_ads_ruby_sdk/services/ad_insight.rb,
lib/bing_ads_ruby_sdk/errors/error_handler.rb,
lib/bing_ads_ruby_sdk/postprocessors/snakize.rb,
lib/bing_ads_ruby_sdk/preprocessors/camelize.rb,
lib/bing_ads_ruby_sdk/wsdl_operation_wrapper.rb,
lib/bing_ads_ruby_sdk/services/customer_billing.rb,
lib/bing_ads_ruby_sdk/oauth2/authorization_handler.rb,
lib/bing_ads_ruby_sdk/services/campaign_management.rb,
lib/bing_ads_ruby_sdk/services/customer_management.rb,
lib/bing_ads_ruby_sdk/postprocessors/cast_long_arrays.rb
Defined Under Namespace
Modules: Errors, OAuth2, Postprocessors, Preprocessors, Services, StringUtils
Classes: Api, AugmentedParser, Configuration, Header, HttpClient, LogMessage, SoapClient, WsdlOperationWrapper
Constant Summary
collapse
- TYPE_KEY =
'@type'
- ROOT_PATH =
File.join(__dir__,'..')
- VERSION =
'1.3.4'.freeze
- DEFAULT_SDK_VERSION =
:v13
Class Method Summary
collapse
Class Method Details
15
16
17
|
# File 'lib/bing_ads_ruby_sdk.rb', line 15
def self.configure
yield(config)
end
|
.log(level, *args, &block) ⇒ Object
19
20
21
22
|
# File 'lib/bing_ads_ruby_sdk.rb', line 19
def self.log(level, *args, &block)
return unless config.log
config.logger.send(level, *args, &block)
end
|
.root_path ⇒ Object
24
25
26
|
# File 'lib/bing_ads_ruby_sdk.rb', line 24
def self.root_path
ROOT_PATH
end
|
.type_key ⇒ Object
28
29
30
|
# File 'lib/bing_ads_ruby_sdk.rb', line 28
def self.type_key
TYPE_KEY
end
|