forked from Wavyzz/dolibarr
Update Stripe lib to 10.7.0
This commit is contained in:
@@ -21,9 +21,9 @@ namespace Stripe;
|
||||
*
|
||||
* @property string $object String representing the object's type. Objects of the same type share the same value.
|
||||
* @property \Stripe\StripeObject[] $available Funds that are available to be transferred or paid out, whether automatically by Stripe or explicitly via the <a href="https://stripe.com/docs/api#transfers">Transfers API</a> or <a href="https://stripe.com/docs/api#payouts">Payouts API</a>. The available balance for each currency and payment type can be found in the <code>source_types</code> property.
|
||||
* @property \Stripe\StripeObject[] $connect_reserved Funds held due to negative balances on connected Custom accounts. The connect reserve balance for each currency and payment type can be found in the <code>source_types</code> property.
|
||||
* @property \Stripe\StripeObject[] $instant_available Funds that can be paid out using Instant Payouts.
|
||||
* @property \Stripe\StripeObject $issuing
|
||||
* @property null|\Stripe\StripeObject[] $connect_reserved Funds held due to negative balances on connected Custom accounts. The connect reserve balance for each currency and payment type can be found in the <code>source_types</code> property.
|
||||
* @property null|\Stripe\StripeObject[] $instant_available Funds that can be paid out using Instant Payouts.
|
||||
* @property null|\Stripe\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 \Stripe\StripeObject[] $pending Funds that are not yet available in the balance, due to the 7-day rolling pay cycle. The pending balance for each currency, and for each payment type, can be found in the <code>source_types</code> property.
|
||||
*/
|
||||
@@ -31,15 +31,5 @@ class Balance extends SingletonApiResource
|
||||
{
|
||||
const OBJECT_NAME = 'balance';
|
||||
|
||||
/**
|
||||
* @param null|array|string $opts
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*
|
||||
* @return \Stripe\Balance
|
||||
*/
|
||||
public static function retrieve($opts = null)
|
||||
{
|
||||
return self::_singletonRetrieve($opts);
|
||||
}
|
||||
use ApiOperations\SingletonRetrieve;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user