pub struct CreateRealtimeTranscriptionParams {Show 15 fields
pub account_sid: String,
pub call_sid: String,
pub name: Option<String>,
pub track: Option<String>,
pub status_callback_url: Option<String>,
pub status_callback_method: Option<String>,
pub inbound_track_label: Option<String>,
pub outbound_track_label: Option<String>,
pub partial_results: Option<bool>,
pub language_code: Option<String>,
pub transcription_engine: Option<String>,
pub profanity_filter: Option<bool>,
pub speech_model: Option<String>,
pub hints: Option<String>,
pub enable_automatic_punctuation: Option<bool>,
}
Expand description
struct for passing parameters to the method create_realtime_transcription
Fields§
§account_sid: String
The SID of the Account that created this Transcription resource.
call_sid: String
The SID of the Call the Transcription resource is associated with.
name: Option<String>
The user-specified name of this Transcription, if one was given when the Transcription was created. This may be used to stop the Transcription.
track: Option<String>
§status_callback_url: Option<String>
Absolute URL of the status callback.
status_callback_method: Option<String>
The http method for the status_callback (one of GET, POST).
inbound_track_label: Option<String>
Friendly name given to the Inbound Track
outbound_track_label: Option<String>
Friendly name given to the Outbound Track
partial_results: Option<bool>
Indicates if partial results are going to be sent to the customer
language_code: Option<String>
Language code used by the transcription engine, specified in BCP-47 format
transcription_engine: Option<String>
Definition of the transcription engine to be used, among those supported by Twilio
profanity_filter: Option<bool>
indicates if the server will attempt to filter out profanities, replacing all but the initial character in each filtered word with asterisks
speech_model: Option<String>
Recognition model used by the transcription engine, among those supported by the provider
hints: Option<String>
A Phrase contains words and phrase \"hints\" so that the speech recognition engine is more likely to recognize them.
enable_automatic_punctuation: Option<bool>
The provider will add punctuation to recognition result
Trait Implementations§
Source§impl Clone for CreateRealtimeTranscriptionParams
impl Clone for CreateRealtimeTranscriptionParams
Source§fn clone(&self) -> CreateRealtimeTranscriptionParams
fn clone(&self) -> CreateRealtimeTranscriptionParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more