Browse code

removed Telnyx Plivo Twilio Flowroute appinfo/info.xml appinfo/signature.json README.md lib/Controller/AuthorApiController.php

DoubleBastionAdmin authored on 20/08/2022 16:26:33
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,62 +0,0 @@
1
-<?php
2
-
3
-namespace Telnyx;
4
-
5
-/**
6
- * Class MessagingProfile
7
- *
8
- * @package Telnyx
9
- */
10
-class MessagingProfile extends ApiResource
11
-{
12
-    const OBJECT_NAME = "messaging_profile";
13
-
14
-    use ApiOperations\All;
15
-    use ApiOperations\Create;
16
-    use ApiOperations\Delete;
17
-    use ApiOperations\Retrieve;
18
-    use ApiOperations\Update;
19
-
20
-
21
-    /**
22
-     * @param array|null $params
23
-     * @param array|string|null $options
24
-     *
25
-     * @return List all phone numbers associated with a messaging profile.
26
-     */
27
-    public function phone_numbers($params = null, $options = null)
28
-    {
29
-        $url = $this->instanceUrl() . '/phone_numbers';
30
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
31
-        $this->refreshFrom($response, $opts);
32
-        return $this;
33
-    }
34
-
35
-    /**
36
-     * @param array|null $params
37
-     * @param array|string|null $options
38
-     *
39
-     * @return List all short codes associated with a messaging profile.
40
-     */
41
-    public function short_codes($params = null, $options = null)
42
-    {
43
-        $url = $this->instanceUrl() . '/short_codes';
44
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
45
-        $this->refreshFrom($response, $opts);
46
-        return $this;
47
-    }
48
-
49
-    /**
50
-     * @param array|null $params
51
-     * @param array|string|null $options
52
-     *
53
-     * @return List all sender IDs associated with a messaging profile.
54
-     */
55
-    public function alphanumeric_sender_ids($params = null, $options = null)
56
-    {
57
-        $url = $this->instanceUrl() . '/alphanumeric_sender_ids';
58
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
59
-        $this->refreshFrom($response, $opts);
60
-        return $this;
61
-    }
62
-}
Browse code

added appinfo/signature.json Telnyx Twilio Flowroute

DoubleBastionAdmin authored on 19/08/2022 13:10:24
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,62 @@
1
+<?php
2
+
3
+namespace Telnyx;
4
+
5
+/**
6
+ * Class MessagingProfile
7
+ *
8
+ * @package Telnyx
9
+ */
10
+class MessagingProfile extends ApiResource
11
+{
12
+    const OBJECT_NAME = "messaging_profile";
13
+
14
+    use ApiOperations\All;
15
+    use ApiOperations\Create;
16
+    use ApiOperations\Delete;
17
+    use ApiOperations\Retrieve;
18
+    use ApiOperations\Update;
19
+
20
+
21
+    /**
22
+     * @param array|null $params
23
+     * @param array|string|null $options
24
+     *
25
+     * @return List all phone numbers associated with a messaging profile.
26
+     */
27
+    public function phone_numbers($params = null, $options = null)
28
+    {
29
+        $url = $this->instanceUrl() . '/phone_numbers';
30
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
31
+        $this->refreshFrom($response, $opts);
32
+        return $this;
33
+    }
34
+
35
+    /**
36
+     * @param array|null $params
37
+     * @param array|string|null $options
38
+     *
39
+     * @return List all short codes associated with a messaging profile.
40
+     */
41
+    public function short_codes($params = null, $options = null)
42
+    {
43
+        $url = $this->instanceUrl() . '/short_codes';
44
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
45
+        $this->refreshFrom($response, $opts);
46
+        return $this;
47
+    }
48
+
49
+    /**
50
+     * @param array|null $params
51
+     * @param array|string|null $options
52
+     *
53
+     * @return List all sender IDs associated with a messaging profile.
54
+     */
55
+    public function alphanumeric_sender_ids($params = null, $options = null)
56
+    {
57
+        $url = $this->instanceUrl() . '/alphanumeric_sender_ids';
58
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
59
+        $this->refreshFrom($response, $opts);
60
+        return $this;
61
+    }
62
+}
Browse code

removed appinfo/signature.json and Telnyx

DoubleBastionAdmin authored on 19/08/2022 12:45:59
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,62 +0,0 @@
1
-<?php
2
-
3
-namespace Telnyx;
4
-
5
-/**
6
- * Class MessagingProfile
7
- *
8
- * @package Telnyx
9
- */
10
-class MessagingProfile extends ApiResource
11
-{
12
-    const OBJECT_NAME = "messaging_profile";
13
-
14
-    use ApiOperations\All;
15
-    use ApiOperations\Create;
16
-    use ApiOperations\Delete;
17
-    use ApiOperations\Retrieve;
18
-    use ApiOperations\Update;
19
-
20
-
21
-    /**
22
-     * @param array|null $params
23
-     * @param array|string|null $options
24
-     *
25
-     * @return List all phone numbers associated with a messaging profile.
26
-     */
27
-    public function phone_numbers($params = null, $options = null)
28
-    {
29
-        $url = $this->instanceUrl() . '/phone_numbers';
30
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
31
-        $this->refreshFrom($response, $opts);
32
-        return $this;
33
-    }
34
-
35
-    /**
36
-     * @param array|null $params
37
-     * @param array|string|null $options
38
-     *
39
-     * @return List all short codes associated with a messaging profile.
40
-     */
41
-    public function short_codes($params = null, $options = null)
42
-    {
43
-        $url = $this->instanceUrl() . '/short_codes';
44
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
45
-        $this->refreshFrom($response, $opts);
46
-        return $this;
47
-    }
48
-
49
-    /**
50
-     * @param array|null $params
51
-     * @param array|string|null $options
52
-     *
53
-     * @return List all sender IDs associated with a messaging profile.
54
-     */
55
-    public function alphanumeric_sender_ids($params = null, $options = null)
56
-    {
57
-        $url = $this->instanceUrl() . '/alphanumeric_sender_ids';
58
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
59
-        $this->refreshFrom($response, $opts);
60
-        return $this;
61
-    }
62
-}
Browse code

added appinfo/signature.json and Telnyx directory

DoubleBastionAdmin authored on 19/08/2022 11:38:54
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,62 @@
1
+<?php
2
+
3
+namespace Telnyx;
4
+
5
+/**
6
+ * Class MessagingProfile
7
+ *
8
+ * @package Telnyx
9
+ */
10
+class MessagingProfile extends ApiResource
11
+{
12
+    const OBJECT_NAME = "messaging_profile";
13
+
14
+    use ApiOperations\All;
15
+    use ApiOperations\Create;
16
+    use ApiOperations\Delete;
17
+    use ApiOperations\Retrieve;
18
+    use ApiOperations\Update;
19
+
20
+
21
+    /**
22
+     * @param array|null $params
23
+     * @param array|string|null $options
24
+     *
25
+     * @return List all phone numbers associated with a messaging profile.
26
+     */
27
+    public function phone_numbers($params = null, $options = null)
28
+    {
29
+        $url = $this->instanceUrl() . '/phone_numbers';
30
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
31
+        $this->refreshFrom($response, $opts);
32
+        return $this;
33
+    }
34
+
35
+    /**
36
+     * @param array|null $params
37
+     * @param array|string|null $options
38
+     *
39
+     * @return List all short codes associated with a messaging profile.
40
+     */
41
+    public function short_codes($params = null, $options = null)
42
+    {
43
+        $url = $this->instanceUrl() . '/short_codes';
44
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
45
+        $this->refreshFrom($response, $opts);
46
+        return $this;
47
+    }
48
+
49
+    /**
50
+     * @param array|null $params
51
+     * @param array|string|null $options
52
+     *
53
+     * @return List all sender IDs associated with a messaging profile.
54
+     */
55
+    public function alphanumeric_sender_ids($params = null, $options = null)
56
+    {
57
+        $url = $this->instanceUrl() . '/alphanumeric_sender_ids';
58
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
59
+        $this->refreshFrom($response, $opts);
60
+        return $this;
61
+    }
62
+}
Browse code

removed Telnyx directory

DoubleBastionAdmin authored on 19/08/2022 11:12:03
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,62 +0,0 @@
1
-<?php
2
-
3
-namespace Telnyx;
4
-
5
-/**
6
- * Class MessagingProfile
7
- *
8
- * @package Telnyx
9
- */
10
-class MessagingProfile extends ApiResource
11
-{
12
-    const OBJECT_NAME = "messaging_profile";
13
-
14
-    use ApiOperations\All;
15
-    use ApiOperations\Create;
16
-    use ApiOperations\Delete;
17
-    use ApiOperations\Retrieve;
18
-    use ApiOperations\Update;
19
-
20
-
21
-    /**
22
-     * @param array|null $params
23
-     * @param array|string|null $options
24
-     *
25
-     * @return List all phone numbers associated with a messaging profile.
26
-     */
27
-    public function phone_numbers($params = null, $options = null)
28
-    {
29
-        $url = $this->instanceUrl() . '/phone_numbers';
30
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
31
-        $this->refreshFrom($response, $opts);
32
-        return $this;
33
-    }
34
-
35
-    /**
36
-     * @param array|null $params
37
-     * @param array|string|null $options
38
-     *
39
-     * @return List all short codes associated with a messaging profile.
40
-     */
41
-    public function short_codes($params = null, $options = null)
42
-    {
43
-        $url = $this->instanceUrl() . '/short_codes';
44
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
45
-        $this->refreshFrom($response, $opts);
46
-        return $this;
47
-    }
48
-
49
-    /**
50
-     * @param array|null $params
51
-     * @param array|string|null $options
52
-     *
53
-     * @return List all sender IDs associated with a messaging profile.
54
-     */
55
-    public function alphanumeric_sender_ids($params = null, $options = null)
56
-    {
57
-        $url = $this->instanceUrl() . '/alphanumeric_sender_ids';
58
-        list($response, $opts) = $this->_request('get', $url, $params, $options);
59
-        $this->refreshFrom($response, $opts);
60
-        return $this;
61
-    }
62
-}
Browse code

Created repository.

DoubleBastionAdmin authored on 01/03/2022 23:47:00
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,62 @@
1
+<?php
2
+
3
+namespace Telnyx;
4
+
5
+/**
6
+ * Class MessagingProfile
7
+ *
8
+ * @package Telnyx
9
+ */
10
+class MessagingProfile extends ApiResource
11
+{
12
+    const OBJECT_NAME = "messaging_profile";
13
+
14
+    use ApiOperations\All;
15
+    use ApiOperations\Create;
16
+    use ApiOperations\Delete;
17
+    use ApiOperations\Retrieve;
18
+    use ApiOperations\Update;
19
+
20
+
21
+    /**
22
+     * @param array|null $params
23
+     * @param array|string|null $options
24
+     *
25
+     * @return List all phone numbers associated with a messaging profile.
26
+     */
27
+    public function phone_numbers($params = null, $options = null)
28
+    {
29
+        $url = $this->instanceUrl() . '/phone_numbers';
30
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
31
+        $this->refreshFrom($response, $opts);
32
+        return $this;
33
+    }
34
+
35
+    /**
36
+     * @param array|null $params
37
+     * @param array|string|null $options
38
+     *
39
+     * @return List all short codes associated with a messaging profile.
40
+     */
41
+    public function short_codes($params = null, $options = null)
42
+    {
43
+        $url = $this->instanceUrl() . '/short_codes';
44
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
45
+        $this->refreshFrom($response, $opts);
46
+        return $this;
47
+    }
48
+
49
+    /**
50
+     * @param array|null $params
51
+     * @param array|string|null $options
52
+     *
53
+     * @return List all sender IDs associated with a messaging profile.
54
+     */
55
+    public function alphanumeric_sender_ids($params = null, $options = null)
56
+    {
57
+        $url = $this->instanceUrl() . '/alphanumeric_sender_ids';
58
+        list($response, $opts) = $this->_request('get', $url, $params, $options);
59
+        $this->refreshFrom($response, $opts);
60
+        return $this;
61
+    }
62
+}