-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disabled media url encoding, mfa schema update (#16)
* New deploy * Update APIController.php * Update APIController.php Co-authored-by: DX-Bandwidth <[email protected]>
- Loading branch information
1 parent
1f88cd2
commit 23cbc8b
Showing
9 changed files
with
154 additions
and
54 deletions.
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
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
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
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
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
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
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,105 @@ | ||
<?php | ||
/* | ||
* BandwidthLib | ||
* | ||
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). | ||
*/ | ||
|
||
namespace BandwidthLib\Voice\Models; | ||
|
||
/** | ||
* @todo Write general description for this model | ||
*/ | ||
class ApiModifyConferenceRequest implements \JsonSerializable | ||
{ | ||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $status public property | ||
*/ | ||
public $status; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $redirectUrl public property | ||
*/ | ||
public $redirectUrl; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $redirectFallbackUrl public property | ||
*/ | ||
public $redirectFallbackUrl; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $redirectMethod public property | ||
*/ | ||
public $redirectMethod; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $redirectFallbackMethod public property | ||
*/ | ||
public $redirectFallbackMethod; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $username public property | ||
*/ | ||
public $username; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $password public property | ||
*/ | ||
public $password; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $fallbackUsername public property | ||
*/ | ||
public $fallbackUsername; | ||
|
||
/** | ||
* @todo Write general description for this property | ||
* @var string|null $fallbackPassword public property | ||
*/ | ||
public $fallbackPassword; | ||
|
||
/** | ||
* Constructor to set initial or default values of member properties | ||
*/ | ||
public function __construct() | ||
{ | ||
if (9 == func_num_args()) { | ||
$this->status = func_get_arg(0); | ||
$this->redirectUrl = func_get_arg(1); | ||
$this->redirectFallbackUrl = func_get_arg(2); | ||
$this->redirectMethod = func_get_arg(3); | ||
$this->redirectFallbackMethod = func_get_arg(4); | ||
$this->username = func_get_arg(5); | ||
$this->password = func_get_arg(6); | ||
$this->fallbackUsername = func_get_arg(7); | ||
$this->fallbackPassword = func_get_arg(8); | ||
} | ||
} | ||
|
||
/** | ||
* Encode this object to JSON | ||
*/ | ||
public function jsonSerialize() | ||
{ | ||
$json = array(); | ||
$json['status'] = $this->status; | ||
$json['redirectUrl'] = $this->redirectUrl; | ||
$json['redirectFallbackUrl'] = $this->redirectFallbackUrl; | ||
$json['redirectMethod'] = $this->redirectMethod; | ||
$json['redirectFallbackMethod'] = $this->redirectFallbackMethod; | ||
$json['username'] = $this->username; | ||
$json['password'] = $this->password; | ||
$json['fallbackUsername'] = $this->fallbackUsername; | ||
$json['fallbackPassword'] = $this->fallbackPassword; | ||
|
||
return array_filter($json); | ||
} | ||
} |
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
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