Class: Stripe::Customer
- Inherits:
-
APIResource
- Object
- StripeObject
- APIResource
- Stripe::Customer
- Includes:
- APIOperations::Delete, APIOperations::Save
- Defined in:
- lib/stripe/resources/customer.rb
Constant Summary collapse
- OBJECT_NAME =
"customer"
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary
Attributes inherited from APIResource
Instance Method Summary collapse
-
#delete_discount ⇒ Object
Deletes a discount associated with the customer.
- #list_payment_methods(params = {}, opts = {}) ⇒ Object
Methods included from APIOperations::Create
Methods included from APIOperations::List
Methods included from APIOperations::NestedResource
Methods included from APIOperations::Save
Methods included from APIOperations::Delete
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, #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_discount ⇒ Object
Deletes a discount associated with the customer.
Returns the deleted discount. The customer object is not updated, so you must call ‘refresh` on it to get a new version with the discount removed.
47 48 49 50 |
# File 'lib/stripe/resources/customer.rb', line 47 def delete_discount resp, opts = execute_resource_request(:delete, resource_url + "/discount") Util.convert_to_stripe_object(resp.data, opts) end |
#list_payment_methods(params = {}, opts = {}) ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/stripe/resources/customer.rb', line 21 def list_payment_methods(params = {}, opts = {}) request_stripe_object( method: :get, path: resource_url + "/payment_methods", params: params, opts: opts ) end |