mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 11:24:52 +00:00
Bump and Migrate logic chartjs 2.9.4 to 4.5.0, bump stripe-php from 17.2.1 to 17.6.0, fontawesome-free from 5.15.4 to 7.0.0, fullcalendar from 6.1.17 to 6.1.19, TinyMCE from 7.9.1 to 8.0.2, bootsatrap js bundle from 4.6.1 to 4.6.2, DataTables from 2.3.1 to 2.3.3
This commit is contained in:
@@ -8,14 +8,9 @@ namespace Stripe;
|
||||
* 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
|
||||
* <a href="https://stripe.com/docs/reporting/balance-transaction-types">transactions</a> that contributed to the balance
|
||||
* (charges, payouts, and so forth).
|
||||
* The top-level <code>available</code> and <code>pending</code> comprise your "payments balance."
|
||||
*
|
||||
* The available and pending amounts for each currency are broken down further by
|
||||
* payment source types.
|
||||
*
|
||||
* Related guide: <a href="https://stripe.com/docs/connect/account-balances">Understanding Connect account balances</a>
|
||||
* Related guide: <a href="https://stripe.com/docs/payments/balances">Balances and settlement time</a>, <a href="https://stripe.com/docs/connect/account-balances">Understanding Connect account balances</a>
|
||||
*
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[] $available Available funds that you can transfer or pay out automatically by Stripe or explicitly through the <a href="https://stripe.com/docs/api#transfers">Transfers API</a> or <a href="https://stripe.com/docs/api#payouts">Payouts API</a>. You can find the available balance for each currency and payment type in the <code>source_types</code> property.
|
||||
@@ -24,6 +19,7 @@ namespace Stripe;
|
||||
* @property null|(object{available: (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[]}&StripeObject) $issuing
|
||||
* @property bool $livemode Has the value <code>true</code> if the object exists in live mode or the value <code>false</code> if the object exists in test mode.
|
||||
* @property (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[] $pending Funds that aren't available in the balance yet. You can find the pending balance for each currency and each payment type in the <code>source_types</code> property.
|
||||
* @property null|(object{available: (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[], pending: (object{amount: int, currency: string, source_types?: (object{bank_account?: int, card?: int, fpx?: int}&StripeObject)}&StripeObject)[]}&StripeObject) $refund_and_dispute_prefunding
|
||||
*/
|
||||
class Balance extends SingletonApiResource
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user