mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
27 lines
432 B
PHP
27 lines
432 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class Balance
|
|
*
|
|
* @property string $object
|
|
* @property mixed $available
|
|
* @property bool $livedmode
|
|
* @property mixed $pending
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class Balance extends SingletonApiResource
|
|
{
|
|
/**
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return Balance
|
|
*/
|
|
public static function retrieve($opts = null)
|
|
{
|
|
return self::_singletonRetrieve($opts);
|
|
}
|
|
}
|