Class: Stripe::EphemeralKey
- Inherits:
-
APIResource
- Object
- StripeObject
- APIResource
- Stripe::EphemeralKey
- Extended by:
- APIOperations::Create
- Includes:
- APIOperations::Delete
- Defined in:
- lib/stripe/resources/ephemeral_key.rb
Constant Summary collapse
- OBJECT_NAME =
"ephemeral_key"
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary
Attributes inherited from APIResource
Attributes inherited from StripeObject
Class Method Summary collapse
- .create(params = {}, opts = {}) ⇒ Object
-
.delete(id, params = {}, opts = {}) ⇒ Object
Invalidates a short-lived API key for a given resource.
- .object_name ⇒ Object
Instance Method Summary collapse
-
#delete(params = {}, opts = {}) ⇒ Object
Invalidates a short-lived API key for a given resource.
Methods included from APIOperations::Create
Methods included from APIOperations::Delete
Methods inherited from APIResource
class_name, custom_method, #refresh, #request_stripe_object, 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
Class Method Details
.create(params = {}, opts = {}) ⇒ Object
34 35 36 37 38 39 40 41 |
# File 'lib/stripe/resources/ephemeral_key.rb', line 34 def self.create(params = {}, opts = {}) opts = Util.normalize_opts(opts) unless opts[:stripe_version] raise ArgumentError, "stripe_version must be specified to create an ephemeral key" end super end |
.delete(id, params = {}, opts = {}) ⇒ Object
Invalidates a short-lived API key for a given resource.
15 16 17 18 19 20 21 22 |
# File 'lib/stripe/resources/ephemeral_key.rb', line 15 def self.delete(id, params = {}, opts = {}) request_stripe_object( method: :delete, path: format("/v1/ephemeral_keys/%<id>s", { id: CGI.escape(id) }), params: params, opts: opts ) end |
.object_name ⇒ Object
10 11 12 |
# File 'lib/stripe/resources/ephemeral_key.rb', line 10 def self.object_name "ephemeral_key" end |
Instance Method Details
#delete(params = {}, opts = {}) ⇒ Object
Invalidates a short-lived API key for a given resource.
25 26 27 28 29 30 31 32 |
# File 'lib/stripe/resources/ephemeral_key.rb', line 25 def delete(params = {}, opts = {}) request_stripe_object( method: :delete, path: format("/v1/ephemeral_keys/%<key>s", { key: CGI.escape(self["id"]) }), params: params, opts: opts ) end |