Class: FatZebra::Paypal::Capture
- Inherits:
-
APIResource
- Object
- FatZebraObject
- APIResource
- FatZebra::Paypal::Capture
- Includes:
- APIOperation::Find, APIOperation::Search
- Defined in:
- lib/fat_zebra/paypal/capture.rb
Constant Summary
Constants included from APIOperation::Search
APIOperation::Search::DEFAULT_PARAMS
Instance Attribute Summary
Attributes inherited from FatZebraObject
Attributes included from ObjectHelper
Class Method Summary collapse
- .base_path ⇒ Object
-
.refund(id, params = {}, options = {}) ⇒ FatZebra::Paypal::Refund
Refund a PayPal Capture.
Methods included from APIOperation::Search
Methods included from APIOperation::Find
Methods inherited from APIResource
Methods included from APIHelper
included, #request, #resource_name, #resource_path
Methods inherited from FatZebraObject
initialize_from, #load_response_api, #update_from
Methods included from Validation
#errors, #valid!, #valid?, #validates
Methods included from ObjectHelper
#[], #[]=, #add_accessor, #add_accessors, #add_data, #initialize, #inspect, #keys, #method_missing, #remove_accessor, #to_hash, #to_json, #update_attributes
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class FatZebra::ObjectHelper
Class Method Details
.base_path ⇒ Object
19 20 21 |
# File 'lib/fat_zebra/paypal/capture.rb', line 19 def base_path "#{super}/paypal/" end |
.refund(id, params = {}, options = {}) ⇒ FatZebra::Paypal::Refund
Refund a PayPal Capture
31 32 33 34 |
# File 'lib/fat_zebra/paypal/capture.rb', line 31 def refund(id, params = {}, = {}) response = request(:post, resource_path("captures/#{id}/refund"), params, ) FatZebra::Paypal::Refund.initialize_from(response) end |