Module: Zuora::Dispatcher
- Defined in:
- lib/zuora/dispatcher.rb
Class Method Summary collapse
- .amend ⇒ Object
- .create ⇒ Object
- .delete ⇒ Object
- .generate ⇒ Object
- .login ⇒ Object
- .method_missing ⇒ Object
- .query ⇒ Object
- .query_more ⇒ Object
- .subscribe ⇒ Object
- .update ⇒ Object
Class Method Details
.amend ⇒ Object
22 23 24 |
# File 'lib/zuora/dispatcher.rb', line 22 def amend Zuora::Calls::Amend end |
.create ⇒ Object
6 7 8 |
# File 'lib/zuora/dispatcher.rb', line 6 def create Zuora::Calls::Create end |
.delete ⇒ Object
34 35 36 |
# File 'lib/zuora/dispatcher.rb', line 34 def delete Zuora::Calls::Delete end |
.generate ⇒ Object
38 39 40 |
# File 'lib/zuora/dispatcher.rb', line 38 def generate Zuora::Calls::Generate end |
.login ⇒ Object
14 15 16 |
# File 'lib/zuora/dispatcher.rb', line 14 def login Zuora::Calls::Login end |
.method_missing ⇒ Object
42 43 44 45 46 |
# File 'lib/zuora/dispatcher.rb', line 42 def method_missing fail "Unknown SOAP API call name: #{call_name}. Must be one of :create, :update, :login, subscribe, :amend, or :delete." end |
.query ⇒ Object
26 27 28 |
# File 'lib/zuora/dispatcher.rb', line 26 def query Zuora::Calls::Query end |
.query_more ⇒ Object
30 31 32 |
# File 'lib/zuora/dispatcher.rb', line 30 def query_more Zuora::Calls::QueryMore end |
.subscribe ⇒ Object
18 19 20 |
# File 'lib/zuora/dispatcher.rb', line 18 def subscribe Zuora::Calls::Subscribe end |
.update ⇒ Object
10 11 12 |
# File 'lib/zuora/dispatcher.rb', line 10 def update Zuora::Calls::Update end |