mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-05 00:02:50 -04:00
12 lines
202 B
Ruby
12 lines
202 B
Ruby
module Stripe
|
|
class ExchangeRate < APIResource
|
|
extend Stripe::APIOperations::List
|
|
|
|
OBJECT_NAME = "exchange_rate".freeze
|
|
|
|
def self.resource_url
|
|
"/v1/exchange_rates"
|
|
end
|
|
end
|
|
end
|