Class: Stripe::ExchangeRate
- Inherits:
-
APIResource
- Object
- StripeObject
- APIResource
- Stripe::ExchangeRate
- Extended by:
- APIOperations::List
- Defined in:
- lib/stripe/resources/exchange_rate.rb
Overview
‘ExchangeRate` objects allow you to determine the rates that Stripe is currently using to convert from one currency to another. Since this number is variable throughout the day, there are various reasons why you might want to know the current rate (for example, to dynamically price an item for a user with a default payment in a foreign currency).
Please refer to our [Exchange Rates API](stripe.com/docs/fx-rates) guide for more details.
*[Note: this integration path is supported but no longer recommended]* Additionally, you can guarantee that a charge is made with an exchange rate that you expect is current. To do so, you must pass in the exchange_rate to charges endpoints. If the value is no longer up to date, the charge won’t go through. Please refer to our [Using with charges](stripe.com/docs/exchange-rates) guide for more details.
*This Exchange Rates API is a Beta Service and is subject to Stripe’s terms of service. You may use the API solely for the purpose of transacting on Stripe. For example, the API may be queried in order to:*
-
*localize prices for processing payments on Stripe*
-
*reconcile Stripe transactions*
-
*determine how much money to send to a connected account*
-
*determine app fees to charge a connected account*
*Using this Exchange Rates API beta for any purpose other than to transact on Stripe is strictly prohibited and constitutes a violation of Stripe’s terms of service.*
Constant Summary collapse
- OBJECT_NAME =
"exchange_rate"
Constants inherited from StripeObject
StripeObject::RESERVED_FIELD_NAMES
Instance Attribute Summary
Attributes inherited from APIResource
Attributes inherited from StripeObject
Class Method Summary collapse
-
.list(filters = {}, opts = {}) ⇒ Object
Returns a list of objects that contain the rates at which foreign currencies are converted to one another.
- .object_name ⇒ Object
Methods included from APIOperations::List
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
.list(filters = {}, opts = {}) ⇒ Object
Returns a list of objects that contain the rates at which foreign currencies are converted to one another. Only shows the currencies for which Stripe supports.
40 41 42 |
# File 'lib/stripe/resources/exchange_rate.rb', line 40 def self.list(filters = {}, opts = {}) request_stripe_object(method: :get, path: "/v1/exchange_rates", params: filters, opts: opts) end |
.object_name ⇒ Object
35 36 37 |
# File 'lib/stripe/resources/exchange_rate.rb', line 35 def self.object_name "exchange_rate" end |