Safe Haskell | None |
---|---|
Language | Haskell2010 |
Contains the types generated from the schema Balance
Synopsis
- data Balance = Balance {}
- data BalanceObject'
Documentation
Defines the data type for the schema balance
This is an object representing your Stripe balance. You can retrieve it to see the balance currently on your Stripe account.
You can also retrieve the balance history, which contains a list of transactions that contributed to the balance (charges, payouts, and so forth).
The available and pending amounts for each currency are broken down further by payment source types.
Related guide: Understanding Connect Account Balances.
Balance | |
|
data BalanceObject' Source #
Defines the enum schema balanceObject'
String representing the object's type. Objects of the same type share the same value.
Instances
Eq BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance (==) :: BalanceObject' -> BalanceObject' -> Bool # (/=) :: BalanceObject' -> BalanceObject' -> Bool # | |
Show BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance showsPrec :: Int -> BalanceObject' -> ShowS # show :: BalanceObject' -> String # showList :: [BalanceObject'] -> ShowS # | |
ToJSON BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance toJSON :: BalanceObject' -> Value # toEncoding :: BalanceObject' -> Encoding # toJSONList :: [BalanceObject'] -> Value # toEncodingList :: [BalanceObject'] -> Encoding # | |
FromJSON BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance parseJSON :: Value -> Parser BalanceObject' # parseJSONList :: Value -> Parser [BalanceObject'] # |