Function create_participant

Source
pub async fn create_participant(
    configuration: &Configuration,
    account_sid: &str,
    conference_sid: &str,
    from: &str,
    to: &str,
    status_callback: Option<&str>,
    status_callback_method: Option<&str>,
    status_callback_event: Option<Vec<String>>,
    label: Option<&str>,
    timeout: Option<i32>,
    record: Option<bool>,
    muted: Option<bool>,
    beep: Option<&str>,
    start_conference_on_enter: Option<bool>,
    end_conference_on_exit: Option<bool>,
    wait_url: Option<&str>,
    wait_method: Option<&str>,
    early_media: Option<bool>,
    max_participants: Option<i32>,
    conference_record: Option<&str>,
    conference_trim: Option<&str>,
    conference_status_callback: Option<&str>,
    conference_status_callback_method: Option<&str>,
    conference_status_callback_event: Option<Vec<String>>,
    recording_channels: Option<&str>,
    recording_status_callback: Option<&str>,
    recording_status_callback_method: Option<&str>,
    sip_auth_username: Option<&str>,
    sip_auth_password: Option<&str>,
    region: Option<&str>,
    conference_recording_status_callback: Option<&str>,
    conference_recording_status_callback_method: Option<&str>,
    recording_status_callback_event: Option<Vec<String>>,
    conference_recording_status_callback_event: Option<Vec<String>>,
    coaching: Option<bool>,
    call_sid_to_coach: Option<&str>,
    jitter_buffer_size: Option<&str>,
    byoc: Option<&str>,
    caller_id: Option<&str>,
    call_reason: Option<&str>,
    recording_track: Option<&str>,
    time_limit: Option<i32>,
    machine_detection: Option<&str>,
    machine_detection_timeout: Option<i32>,
    machine_detection_speech_threshold: Option<i32>,
    machine_detection_speech_end_threshold: Option<i32>,
    machine_detection_silence_timeout: Option<i32>,
    amd_status_callback: Option<&str>,
    amd_status_callback_method: Option<&str>,
) -> Result<ApiPeriodV2010PeriodAccountPeriodConferencePeriodParticipant, Error<CreateParticipantError>>
Expand description