Billing
6 months ago
Collection.php
6 months ago
Event.php
6 months ago
EventDestination.php
6 months ago
Event.php
22 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaVendor\Stripe\V2; |
| 4 | |
| 5 | /** |
| 6 | * Base class for V2 events. |
| 7 | * |
| 8 | * This is concrete for use in our generated tests. Events returned from the \Stripe\V2\Core\EventService |
| 9 | * will be a subtype of \Stripe\V2\Event. |
| 10 | * |
| 11 | * @property string $id Unique identifier for the event. |
| 12 | * @property string $object String representing the object's type. Objects of the same type share the same value of the object field. |
| 13 | * @property int $created Time at which the object was created. |
| 14 | * @property \AmeliaVendor\Stripe\StripeObject $reason Reason for the event. |
| 15 | * @property string $type The type of the event. |
| 16 | * @property null|string $context The Stripe account of the event |
| 17 | */ |
| 18 | class Event extends \AmeliaVendor\Stripe\ApiResource |
| 19 | { |
| 20 | const OBJECT_NAME = 'v2.core.event'; |
| 21 | } |
| 22 |