Safe Haskell | None |
---|---|
Language | Haskell2010 |
StripeAPI.Types.Balance
Description
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.
Constructors
Balance | |
Fields
|
data BalanceObject' Source #
Defines the enum schema balanceObject'
String representing the object's type. Objects of the same type share the same value.
Constructors
BalanceObject'EnumOther Value | |
BalanceObject'EnumTyped String | |
BalanceObject'EnumStringBalance |
Instances
Eq BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance Methods (==) :: BalanceObject' -> BalanceObject' -> Bool # (/=) :: BalanceObject' -> BalanceObject' -> Bool # | |
Show BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance Methods showsPrec :: Int -> BalanceObject' -> ShowS # show :: BalanceObject' -> String # showList :: [BalanceObject'] -> ShowS # | |
ToJSON BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance Methods toJSON :: BalanceObject' -> Value # toEncoding :: BalanceObject' -> Encoding # toJSONList :: [BalanceObject'] -> Value # toEncodingList :: [BalanceObject'] -> Encoding # | |
FromJSON BalanceObject' Source # | |
Defined in StripeAPI.Types.Balance Methods parseJSON :: Value -> Parser BalanceObject' # parseJSONList :: Value -> Parser [BalanceObject'] # |