MeterEvent.php
7 months ago
MeterEventAdjustment.php
7 months ago
MeterEventSession.php
7 months ago
MeterEventSession.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | // File generated from our OpenAPI spec |
| 4 | |
| 5 | namespace AmeliaVendor\Stripe\V2\Billing; |
| 6 | |
| 7 | /** |
| 8 | * @property string $id The unique id of this auth session. |
| 9 | * @property string $object String representing the object's type. Objects of the same type share the same value of the object field. |
| 10 | * @property string $authentication_token The authentication token for this session. Use this token when calling the high-throughput meter event API. |
| 11 | * @property int $created The creation time of this session. |
| 12 | * @property int $expires_at The time at which this session will expire. |
| 13 | * @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. |
| 14 | */ |
| 15 | class MeterEventSession extends \AmeliaVendor\Stripe\ApiResource |
| 16 | { |
| 17 | const OBJECT_NAME = 'v2.billing.meter_event_session'; |
| 18 | } |
| 19 |