module Zuora::Dispatcher

Public Class Methods

amend() click to toggle source
# File lib/zuora/dispatcher.rb, line 24
def amend
  Zuora::Calls::Amend
end
create() click to toggle source
# File lib/zuora/dispatcher.rb, line 8
def create
  Zuora::Calls::Create
end
delete() click to toggle source
# File lib/zuora/dispatcher.rb, line 36
def delete
  Zuora::Calls::Delete
end
generate() click to toggle source
# File lib/zuora/dispatcher.rb, line 40
def generate
  Zuora::Calls::Generate
end
login() click to toggle source
# File lib/zuora/dispatcher.rb, line 16
def login
  Zuora::Calls::Login
end
method_missing() click to toggle source
# File lib/zuora/dispatcher.rb, line 44
def method_missing
  raise "Unknown SOAP API call name: #{call_name}.
        Must be one of :create, :update, :login,
        subscribe, :amend, or :delete."
end
query() click to toggle source
# File lib/zuora/dispatcher.rb, line 28
def query
  Zuora::Calls::Query
end
query_more() click to toggle source
# File lib/zuora/dispatcher.rb, line 32
def query_more
  Zuora::Calls::QueryMore
end
subscribe() click to toggle source
# File lib/zuora/dispatcher.rb, line 20
def subscribe
  Zuora::Calls::Subscribe
end
update() click to toggle source
# File lib/zuora/dispatcher.rb, line 12
def update
  Zuora::Calls::Update
end