mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 18:48:22 +01:00
31 lines
505 B
PHP
31 lines
505 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Balance
|
|
*
|
|
* @property string $object
|
|
* @property array $available
|
|
* @property array $connect_reserved
|
|
* @property bool $livemode
|
|
* @property array $pending
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Balance extends SingletonApiResource
|
|
{
|
|
|
|
const OBJECT_NAME = "balance";
|
|
|
|
/**
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return Balance
|
|
*/
|
|
public static function retrieve($opts = null)
|
|
{
|
|
return self::_singletonRetrieve($opts);
|
|
}
|
|
}
|