lib/twilio-ruby/rest/api/v2010/account/conference.rb in twilio-ruby-5.72.1 vs lib/twilio-ruby/rest/api/v2010/account/conference.rb in twilio-ruby-5.73.0
- old
+ new
@@ -242,12 +242,12 @@
# Update the ConferenceInstance
# @param [conference.UpdateStatus] status The new status of the resource. Can be:
# Can be: `init`, `in-progress`, or `completed`. Specifying `completed` will end
# the conference and hang up all participants
# @param [String] announce_url The URL we should call to announce something into
- # the conference. The URL can return an MP3, a WAV, or a TwiML document with
- # `<Play>` or `<Say>`.
+ # the conference. The URL may return an MP3 file, a WAV file, or a TwiML document
+ # that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs.
# @param [String] announce_method The HTTP method used to call `announce_url`. Can
# be: `GET` or `POST` and the default is `POST`
# @return [ConferenceInstance] Updated ConferenceInstance
def update(status: :unset, announce_url: :unset, announce_method: :unset)
data = Twilio::Values.of({
@@ -454,11 +454,11 @@
# Update the ConferenceInstance
# @param [conference.UpdateStatus] status The new status of the resource. Can be:
# Can be: `init`, `in-progress`, or `completed`. Specifying `completed` will end
# the conference and hang up all participants
# @param [String] announce_url The URL we should call to announce something into
- # the conference. The URL can return an MP3, a WAV, or a TwiML document with
- # `<Play>` or `<Say>`.
+ # the conference. The URL may return an MP3 file, a WAV file, or a TwiML document
+ # that contains `<Play>`, `<Say>`, `<Pause>`, or `<Redirect>` verbs.
# @param [String] announce_method The HTTP method used to call `announce_url`. Can
# be: `GET` or `POST` and the default is `POST`
# @return [ConferenceInstance] Updated ConferenceInstance
def update(status: :unset, announce_url: :unset, announce_method: :unset)
context.update(status: status, announce_url: announce_url, announce_method: announce_method, )
\ No newline at end of file