| Name |
Type |
Description |
Notes |
| status |
ConferenceStateEnum |
|
[optional] [default to undefined] |
| redirectUrl |
string |
The URL to send the conferenceRedirect event which will provide new BXML. Not allowed if `state` is `completed`, but required if `state` is `active`. |
[optional] [default to undefined] |
| redirectMethod |
RedirectMethodEnum |
|
[optional] [default to undefined] |
| username |
string |
Basic auth username. |
[optional] [default to undefined] |
| password |
string |
Basic auth password. |
[optional] [default to undefined] |
| redirectFallbackUrl |
string |
A fallback url which, if provided, will be used to retry the `conferenceRedirect` webhook delivery in case `redirectUrl` fails to respond. Not allowed if `state` is `completed`. |
[optional] [default to undefined] |
| redirectFallbackMethod |
RedirectMethodEnum |
|
[optional] [default to undefined] |
| fallbackUsername |
string |
Basic auth username. |
[optional] [default to undefined] |
| fallbackPassword |
string |
Basic auth password. |
[optional] [default to undefined] |
import { UpdateConference } from 'bandwidth-sdk';
const instance: UpdateConference = {
status,
redirectUrl,
redirectMethod,
username,
password,
redirectFallbackUrl,
redirectFallbackMethod,
fallbackUsername,
fallbackPassword,
};
[Back to Model list] [Back to API list] [Back to README]