pub struct UpdateConferenceParams {
pub account_sid: String,
pub sid: String,
pub status: Option<String>,
pub announce_url: Option<String>,
pub announce_method: Option<String>,
}
Expand description
struct for passing parameters to the method update_conference
Fields§
§account_sid: String
The SID of the Account that created the Conference resource(s) to update.
sid: String
The Twilio-provided string that uniquely identifies the Conference resource to update
status: Option<String>
§announce_url: Option<String>
The URL we should call to announce something into the conference. The URL may return an MP3 file, a WAV file, or a TwiML document that contains <Play>
, <Say>
, <Pause>
, or <Redirect>
verbs.
announce_method: Option<String>
The HTTP method used to call announce_url
. Can be: GET
or POST
and the default is POST
Trait Implementations§
Source§impl Clone for UpdateConferenceParams
impl Clone for UpdateConferenceParams
Source§fn clone(&self) -> UpdateConferenceParams
fn clone(&self) -> UpdateConferenceParams
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for UpdateConferenceParams
impl RefUnwindSafe for UpdateConferenceParams
impl Send for UpdateConferenceParams
impl Sync for UpdateConferenceParams
impl Unpin for UpdateConferenceParams
impl UnwindSafe for UpdateConferenceParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more