File tree Expand file tree Collapse file tree 4 files changed +58
-1
lines changed Expand file tree Collapse file tree 4 files changed +58
-1
lines changed Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Iris ;
4
+
5
+ class A2pSettings {
6
+ use BaseModel;
7
+
8
+ protected $ fields = array (
9
+ "MessageClass " => array ("type " => "string " ),
10
+ "CampaignId " => array ("type " => "string " ),
11
+ "Action " => array ("type " => "string " ),
12
+ );
13
+
14
+ public function __construct ($ data ) {
15
+ $ this ->set_data ($ data );
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Iris ;
4
+
5
+ class OriginationRoutePlan {
6
+ use BaseModel;
7
+
8
+ protected $ fields = array (
9
+ "Id " => array ("type " => "string " ),
10
+ "Route " => array ("type " => "\Iris\Route " ),
11
+ "Action " => array ("type " => "string " ),
12
+ );
13
+
14
+ public function __construct ($ data ) {
15
+ $ this ->set_data ($ data );
16
+ }
17
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Iris ;
4
+
5
+ class Route {
6
+ use BaseModel;
7
+
8
+ protected $ fields = array (
9
+ "Endpoint " => array ("type " => "string " ),
10
+ "Priority " => array ("type " => "int " ),
11
+ "Weight " => array ("type " => "int " ),
12
+ "EndpointType " => array ("type " => "string " ),
13
+ );
14
+
15
+ public function __construct ($ data ) {
16
+ $ this ->set_data ($ data );
17
+ }
18
+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,12 @@ class TnOptionGroup {
26
26
"Protected " => array ("type " => "string " ),
27
27
"Sms " => array ("type " => "string " ),
28
28
"FinalDestinationURI " => array ("type " => "string " ),
29
- "PortOutPasscode " => array ("type " => "string " )
29
+ "PortOutPasscode " => array ("type " => "string " ),
30
+ "NNID " => array ("type " => "string " ),
31
+ "ESPID " => array ("type " => "string " ),
32
+ "A2pSettings " => array ("type " => "\Iris\A2pSettings " ),
33
+ "OriginationRoutePlan " => array ("type " => "\Iris\OriginationRoutePlan " ),
34
+ "PindropEnabled " => array ("type " => "string " )
30
35
);
31
36
public function __construct ($ data ) {
32
37
$ this ->set_data ($ data );
You can’t perform that action at this time.
0 commit comments