# Bandwidth::UpdateConference ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **status** | [**ConferenceStateEnum**](ConferenceStateEnum.md) | | [optional][default to 'active'] | | **redirect_url** | **String** | The URL to send the [conferenceRedirect](/docs/voice/webhooks/conferenceRedirect) event which will provide new BXML. Not allowed if `state` is `completed`, but required if `state` is `active` | [optional] | | **redirect_method** | [**RedirectMethodEnum**](RedirectMethodEnum.md) | | [optional][default to 'POST'] | | **username** | **String** | Basic auth username. | [optional] | | **password** | **String** | Basic auth password. | [optional] | | **redirect_fallback_url** | **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] | | **redirect_fallback_method** | [**RedirectMethodEnum**](RedirectMethodEnum.md) | | [optional][default to 'POST'] | | **fallback_username** | **String** | Basic auth username. | [optional] | | **fallback_password** | **String** | Basic auth password. | [optional] | ## Example ```ruby require 'bandwidth-sdk' instance = Bandwidth::UpdateConference.new( status: null, redirect_url: https://myServer.com/bandwidth/webhooks/conferenceRedirect, redirect_method: null, username: mySecretUsername, password: mySecretPassword1!, redirect_fallback_url: https://myFallbackServer.com/bandwidth/webhooks/conferenceRedirect, redirect_fallback_method: null, fallback_username: mySecretUsername, fallback_password: mySecretPassword1! ) ```