| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,28 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+namespace Telnyx\Reporting; |
|
| 4 |
+ |
|
| 5 |
+/** |
|
| 6 |
+ * Class ReportRun |
|
| 7 |
+ * |
|
| 8 |
+ * @property string $id |
|
| 9 |
+ * @property string $object |
|
| 10 |
+ * @property int $created |
|
| 11 |
+ * @property string $error |
|
| 12 |
+ * @property bool $livemode |
|
| 13 |
+ * @property mixed $parameters |
|
| 14 |
+ * @property string $report_type |
|
| 15 |
+ * @property mixed $result |
|
| 16 |
+ * @property string $status |
|
| 17 |
+ * @property int $succeeded_at |
|
| 18 |
+ * |
|
| 19 |
+ * @package Telnyx\Reporting |
|
| 20 |
+ */ |
|
| 21 |
+class ReportRun extends \Telnyx\ApiResource |
|
| 22 |
+{
|
|
| 23 |
+ const OBJECT_NAME = "reporting.report_run"; |
|
| 24 |
+ |
|
| 25 |
+ use \Telnyx\ApiOperations\All; |
|
| 26 |
+ use \Telnyx\ApiOperations\Create; |
|
| 27 |
+ use \Telnyx\ApiOperations\Retrieve; |
|
| 28 |
+} |