-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from Bandwidth/DX-2715
DX-2715 Adding NNID, ESPID, A2pSettings, OriginationRoutePlan and PindropEnabled to TnOptions
- Loading branch information
Showing
4 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Iris; | ||
|
||
class A2pSettings { | ||
use BaseModel; | ||
|
||
protected $fields = array( | ||
"MessageClass" => array("type" => "string"), | ||
"CampaignId" => array("type" => "string"), | ||
"Action" => array("type" => "string"), | ||
); | ||
|
||
public function __construct($data) { | ||
$this->set_data($data); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace Iris; | ||
|
||
class OriginationRoutePlan { | ||
use BaseModel; | ||
|
||
protected $fields = array( | ||
"Id" => array("type" => "string"), | ||
"Route" => array("type" => "\Iris\Route"), | ||
"Action" => array("type" => "string"), | ||
); | ||
|
||
public function __construct($data) { | ||
$this->set_data($data); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Iris; | ||
|
||
class Route { | ||
use BaseModel; | ||
|
||
protected $fields = array( | ||
"Endpoint" => array("type" => "string"), | ||
"Priority" => array("type" => "int"), | ||
"Weight" => array("type" => "int"), | ||
"EndpointType" => array("type" => "string"), | ||
); | ||
|
||
public function __construct($data) { | ||
$this->set_data($data); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters