composer package updates
[openemr.git] / vendor / stripe / stripe-php / lib / Topup.php
blob197f2c4d9f3d52f2f5ddf4dd3031ef4c9dafca6f
1 <?php
3 namespace Stripe;
5 /**
6 * Class Topup
8 * @property string $id
9 * @property string $object
10 * @property int $amount
11 * @property string $balance_transaction
12 * @property int $created
13 * @property string $currency
14 * @property string $description
15 * @property int $expected_availability_date
16 * @property string $failure_code
17 * @property string $failure_message
18 * @property bool $livemode
19 * @property StripeObject $metadata
20 * @property mixed $source
21 * @property string $statement_descriptor
22 * @property string $status
24 * @package Stripe
26 class Topup extends ApiResource
29 const OBJECT_NAME = "topup";
31 use ApiOperations\All;
32 use ApiOperations\Create;
33 use ApiOperations\Retrieve;
34 use ApiOperations\Update;