Class: AdCenterWrapper::NotificationManagementSoap

Inherits:
SOAP::RPC::Driver
  • Object
show all
Defined in:
lib/defaultDriver.rb

Constant Summary collapse

DefaultEndpointUrl =
"https://adcenterapi.microsoft.com/Api/Advertiser/v6/NotificationManagement/NotificationManagement.asmx"
Methods =
[
  [ "http://adcenter.microsoft.com/syncapis/GetNotifications",
    "getNotifications",
    [ ["in", "parameters", ["::SOAP::SOAPElement", "http://adcenter.microsoft.com/syncapis", "GetNotifications"]],
      ["out", "parameters", ["::SOAP::SOAPElement", "http://adcenter.microsoft.com/syncapis", "GetNotificationsResponse"]] ],
    { :request_style =>  :document, :request_use =>  :literal,
      :response_style => :document, :response_use => :literal,
      :faults => {} }
  ],
  [ "http://adcenter.microsoft.com/syncapis/GetNotificationsByType",
    "getNotificationsByType",
    [ ["in", "parameters", ["::SOAP::SOAPElement", "http://adcenter.microsoft.com/syncapis", "GetNotificationsByType"]],
      ["out", "parameters", ["::SOAP::SOAPElement", "http://adcenter.microsoft.com/syncapis", "GetNotificationsByTypeResponse"]] ],
    { :request_style =>  :document, :request_use =>  :literal,
      :response_style => :document, :response_use => :literal,
      :faults => {} }
  ],
  [ "http://adcenter.microsoft.com/syncapis/GetArchivedNotifications",
    "getArchivedNotifications",
    [ ["in", "parameters", ["::SOAP::SOAPElement", "http://adcenter.microsoft.com/syncapis", "GetArchivedNotifications"]],
      ["out", "parameters", ["::SOAP::SOAPElement", "http://adcenter.microsoft.com/syncapis", "GetArchivedNotificationsResponse"]] ],
    { :request_style =>  :document, :request_use =>  :literal,
      :response_style => :document, :response_use => :literal,
      :faults => {} }
  ]
]

Instance Method Summary collapse

Constructor Details

#initialize(endpoint_url = nil) ⇒ NotificationManagementSoap

Returns a new instance of NotificationManagementSoap.



37
38
39
40
41
42
43
# File 'lib/defaultDriver.rb', line 37

def initialize(endpoint_url = nil)
  endpoint_url ||= DefaultEndpointUrl
  super(endpoint_url, nil)
  self.mapping_registry = DefaultMappingRegistry::EncodedRegistry
  self.literal_mapping_registry = DefaultMappingRegistry::LiteralRegistry
  init_methods
end