Safe Haskell | None |
---|---|
Language | Haskell2010 |
StripeAPI.Types.ExchangeRate
Description
Contains the types generated from the schema ExchangeRate
Synopsis
- data ExchangeRate = ExchangeRate {}
- data ExchangeRateObject'
- data ExchangeRateRates' = ExchangeRateRates' {
Documentation
data ExchangeRate Source #
Defines the data type for the schema exchange_rate
`Exchange Rate` 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).
If you want a guarantee that the charge is made with a certain exchange rate you expect is current, you can pass in `exchange_rate` to charges endpoints. If the value is no longer up to date, the charge won't go through. Please refer to our Exchange Rates API guide for more details.
Constructors
ExchangeRate | |
Fields
|
Instances
Eq ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate | |
Show ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods showsPrec :: Int -> ExchangeRate -> ShowS # show :: ExchangeRate -> String # showList :: [ExchangeRate] -> ShowS # | |
ToJSON ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods toJSON :: ExchangeRate -> Value # toEncoding :: ExchangeRate -> Encoding # toJSONList :: [ExchangeRate] -> Value # toEncodingList :: [ExchangeRate] -> Encoding # | |
FromJSON ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate |
data ExchangeRateObject' Source #
Defines the enum schema exchange_rateObject'
String representing the object's type. Objects of the same type share the same value.
Constructors
ExchangeRateObject'EnumOther Value | |
ExchangeRateObject'EnumTyped String | |
ExchangeRateObject'EnumStringExchangeRate |
Instances
Eq ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods (==) :: ExchangeRateObject' -> ExchangeRateObject' -> Bool # (/=) :: ExchangeRateObject' -> ExchangeRateObject' -> Bool # | |
Show ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods showsPrec :: Int -> ExchangeRateObject' -> ShowS # show :: ExchangeRateObject' -> String # showList :: [ExchangeRateObject'] -> ShowS # | |
ToJSON ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods toJSON :: ExchangeRateObject' -> Value # toEncoding :: ExchangeRateObject' -> Encoding # toJSONList :: [ExchangeRateObject'] -> Value # toEncodingList :: [ExchangeRateObject'] -> Encoding # | |
FromJSON ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods parseJSON :: Value -> Parser ExchangeRateObject' # parseJSONList :: Value -> Parser [ExchangeRateObject'] # |
data ExchangeRateRates' Source #
Defines the data type for the schema exchange_rateRates'
Hash where the keys are supported currencies and the values are the exchange rate at which the base id currency converts to the key currency.
Constructors
ExchangeRateRates' | |
Instances
Eq ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods (==) :: ExchangeRateRates' -> ExchangeRateRates' -> Bool # (/=) :: ExchangeRateRates' -> ExchangeRateRates' -> Bool # | |
Show ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods showsPrec :: Int -> ExchangeRateRates' -> ShowS # show :: ExchangeRateRates' -> String # showList :: [ExchangeRateRates'] -> ShowS # | |
ToJSON ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods toJSON :: ExchangeRateRates' -> Value # toEncoding :: ExchangeRateRates' -> Encoding # toJSONList :: [ExchangeRateRates'] -> Value # toEncodingList :: [ExchangeRateRates'] -> Encoding # | |
FromJSON ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate Methods parseJSON :: Value -> Parser ExchangeRateRates' # parseJSONList :: Value -> Parser [ExchangeRateRates'] # |