Browse code

Added README.md appinfo/info.xml appinfo/signature.json lib/Controller/AuthorApiController.php and the providers directory

DoubleBastionAdmin authored on 20/08/2022 16:33:00
Showing 1 changed files
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
+}