Safe Haskell | None |
---|---|
Language | Haskell2010 |
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.
ExchangeRate | |
|
Instances
Eq ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate (==) :: ExchangeRate -> ExchangeRate -> Bool # (/=) :: ExchangeRate -> ExchangeRate -> Bool # | |
Show ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate showsPrec :: Int -> ExchangeRate -> ShowS # show :: ExchangeRate -> String # showList :: [ExchangeRate] -> ShowS # | |
ToJSON ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate toJSON :: ExchangeRate -> Value # toEncoding :: ExchangeRate -> Encoding # toJSONList :: [ExchangeRate] -> Value # toEncodingList :: [ExchangeRate] -> Encoding # | |
FromJSON ExchangeRate Source # | |
Defined in StripeAPI.Types.ExchangeRate parseJSON :: Value -> Parser ExchangeRate # parseJSONList :: Value -> Parser [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.
ExchangeRateObject'EnumOther Value | |
ExchangeRateObject'EnumTyped String | |
ExchangeRateObject'EnumStringExchangeRate |
Instances
Eq ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate (==) :: ExchangeRateObject' -> ExchangeRateObject' -> Bool # (/=) :: ExchangeRateObject' -> ExchangeRateObject' -> Bool # | |
Show ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate showsPrec :: Int -> ExchangeRateObject' -> ShowS # show :: ExchangeRateObject' -> String # showList :: [ExchangeRateObject'] -> ShowS # | |
ToJSON ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate toJSON :: ExchangeRateObject' -> Value # toEncoding :: ExchangeRateObject' -> Encoding # toJSONList :: [ExchangeRateObject'] -> Value # toEncodingList :: [ExchangeRateObject'] -> Encoding # | |
FromJSON ExchangeRateObject' Source # | |
Defined in StripeAPI.Types.ExchangeRate 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.
Instances
Eq ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate (==) :: ExchangeRateRates' -> ExchangeRateRates' -> Bool # (/=) :: ExchangeRateRates' -> ExchangeRateRates' -> Bool # | |
Show ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate showsPrec :: Int -> ExchangeRateRates' -> ShowS # show :: ExchangeRateRates' -> String # showList :: [ExchangeRateRates'] -> ShowS # | |
ToJSON ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate toJSON :: ExchangeRateRates' -> Value # toEncoding :: ExchangeRateRates' -> Encoding # toJSONList :: [ExchangeRateRates'] -> Value # toEncodingList :: [ExchangeRateRates'] -> Encoding # | |
FromJSON ExchangeRateRates' Source # | |
Defined in StripeAPI.Types.ExchangeRate parseJSON :: Value -> Parser ExchangeRateRates' # parseJSONList :: Value -> Parser [ExchangeRateRates'] # |