芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/portal.pulsehost.co.uk/vendor/stripe/stripe-php/lib/Balance.php
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
* * @property string $object String representing the object's type. Objects of the same type share the same value. * @property \Stripe\StripeObject[] $available Available funds that you can transfer or pay out automatically by Stripe or explicitly through the
Transfers API
or
Payouts API
. You can find the available balance for each currency and payment type in the
source_types
property. * @property null|\Stripe\StripeObject[] $connect_reserved Funds held due to negative balances on connected Custom accounts. You can find the connect reserve balance for each currency and payment type in the
source_types
property. * @property null|\Stripe\StripeObject[] $instant_available Funds that you can pay out using Instant Payouts. * @property null|\Stripe\StripeObject $issuing * @property bool $livemode Has the value
true
if the object exists in live mode or the value
false
if the object exists in test mode. * @property \Stripe\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
source_types
property. */ class Balance extends SingletonApiResource { const OBJECT_NAME = 'balance'; use ApiOperations\SingletonRetrieve; }