#[non_exhaustive]pub struct AudioAndDtmfInputSpecification { /* private fields */ }Expand description
Specifies the audio and DTMF input specification.
Implementations§
source§impl AudioAndDtmfInputSpecification
impl AudioAndDtmfInputSpecification
sourcepub fn start_timeout_ms(&self) -> Option<i32>
pub fn start_timeout_ms(&self) -> Option<i32>
Time for which a bot waits before assuming that the customer isn't going to speak or press a key. This timeout is shared between Audio and DTMF inputs.
sourcepub fn audio_specification(&self) -> Option<&AudioSpecification>
pub fn audio_specification(&self) -> Option<&AudioSpecification>
Specifies the settings on audio input.
sourcepub fn dtmf_specification(&self) -> Option<&DtmfSpecification>
pub fn dtmf_specification(&self) -> Option<&DtmfSpecification>
Specifies the settings on DTMF input.
source§impl AudioAndDtmfInputSpecification
impl AudioAndDtmfInputSpecification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AudioAndDtmfInputSpecification.
Trait Implementations§
source§impl Clone for AudioAndDtmfInputSpecification
impl Clone for AudioAndDtmfInputSpecification
source§fn clone(&self) -> AudioAndDtmfInputSpecification
fn clone(&self) -> AudioAndDtmfInputSpecification
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 moresource§impl PartialEq<AudioAndDtmfInputSpecification> for AudioAndDtmfInputSpecification
impl PartialEq<AudioAndDtmfInputSpecification> for AudioAndDtmfInputSpecification
source§fn eq(&self, other: &AudioAndDtmfInputSpecification) -> bool
fn eq(&self, other: &AudioAndDtmfInputSpecification) -> bool
This method tests for
self and other values to be equal, and is used
by ==.