class BingAdsApi::V8::NotificationService::NotificationService

Public Class Methods

new(config, endpoint) click to toggle source
Calls superclass method
# File lib/bing_ads_api/v8/notification_service.rb, line 15
def initialize(config, endpoint)
  namespace = 'https://adcenter.microsoft.com/api/notifications'
  super(config, endpoint, namespace, :v8)
end

Public Instance Methods

get_archived_notifications(*args, &block) click to toggle source
# File lib/bing_ads_api/v8/notification_service.rb, line 24
def get_archived_notifications(*args, &block)
  return execute_action('get_archived_notifications', args, &block)
end
get_notifications(*args, &block) click to toggle source
# File lib/bing_ads_api/v8/notification_service.rb, line 20
def get_notifications(*args, &block)
  return execute_action('get_notifications', args, &block)
end

Private Instance Methods

get_module() click to toggle source
# File lib/bing_ads_api/v8/notification_service.rb, line 34
def get_module()
  return BingAdsApi::V8::NotificationService
end
get_service_registry() click to toggle source
# File lib/bing_ads_api/v8/notification_service.rb, line 30
def get_service_registry()
  return NotificationServiceRegistry
end