Class: Stripe::Source
- Inherits:
-
APIResource
- Object
- StripeObject
- APIResource
- Stripe::Source
- Extended by:
- Gem::Deprecate, APIOperations::Create
- Includes:
- APIOperations::Save
- Defined in:
- lib/stripe/resources/source.rb
Constant Summary collapse
- OBJECT_NAME =
"source".freeze
Instance Attribute Summary
Attributes inherited from APIResource
Instance Method Summary collapse
- #delete(params = {}, opts = {}) ⇒ Object
- #detach(params = {}, opts = {}) ⇒ Object
- #source_transactions(params = {}, opts = {}) ⇒ Object
- #verify(params = {}, opts = {}) ⇒ Object
Methods included from APIOperations::Create
Methods included from APIOperations::Save
Methods inherited from APIResource
class_name, custom_method, #refresh, resource_url, #resource_url, retrieve, save_nested_resource
Methods included from APIOperations::Request
Methods inherited from StripeObject
#==, #[], #[]=, additive_object_param, additive_object_param?, #as_json, construct_from, #deleted?, #dirty!, #each, #eql?, #hash, #initialize, #inspect, #keys, #marshal_dump, #marshal_load, protected_fields, #refresh_from, serialize_params, #serialize_params, #to_hash, #to_json, #to_s, #update_attributes, #values
Constructor Details
This class inherits a constructor from Stripe::StripeObject
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Stripe::StripeObject
Instance Method Details
#delete(params = {}, opts = {}) ⇒ Object
30 31 32 |
# File 'lib/stripe/resources/source.rb', line 30 def delete(params = {}, opts = {}) detach(params, opts) end |
#detach(params = {}, opts = {}) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 |
# File 'lib/stripe/resources/source.rb', line 17 def detach(params = {}, opts = {}) if !respond_to?(:customer) || customer.nil? || customer.empty? raise NotImplementedError, "This source object does not appear to be currently attached " \ "to a customer object." end url = "#{Customer.resource_url}/#{CGI.escape(customer)}/sources" \ "/#{CGI.escape(id)}" resp, opts = request(:delete, url, params, opts) initialize_from(resp.data, opts) end |
#source_transactions(params = {}, opts = {}) ⇒ Object
36 37 38 39 40 |
# File 'lib/stripe/resources/source.rb', line 36 def source_transactions(params = {}, opts = {}) resp, opts = request(:get, resource_url + "/source_transactions", params, opts) Util.convert_to_stripe_object(resp.data, opts) end |
#verify(params = {}, opts = {}) ⇒ Object
12 13 14 15 |
# File 'lib/stripe/resources/source.rb', line 12 def verify(params = {}, opts = {}) resp, opts = request(:post, resource_url + "/verify", params, opts) initialize_from(resp.data, opts) end |