| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,18 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+namespace Telnyx; |
|
| 4 |
+ |
|
| 5 |
+/** |
|
| 6 |
+ * Events are our way of letting you know when something interesting happens in |
|
| 7 |
+ * your account. See webhooks: |
|
| 8 |
+ * https://developers.telnyx.com/docs/v2/development/api-guide/webhooks |
|
| 9 |
+ * |
|
| 10 |
+ * Events occur when the state of another API resource changes. |
|
| 11 |
+ * |
|
| 12 |
+ * @property string $id Unique identifier for the object. |
|
| 13 |
+ * @property string $object String representing the object's type. Objects of the same type share the same value. |
|
| 14 |
+ */ |
|
| 15 |
+class Event extends ApiResource |
|
| 16 |
+{
|
|
| 17 |
+ const OBJECT_NAME = 'event'; |
|
| 18 |
+} |