All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bandwidth.voice.bxml.verbs.StopTranscription Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

There is a newer version: 12.0.1
Show newest version

package com.bandwidth.voice.bxml.verbs;

import lombok.Builder;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 *  The Stoptranscription verb is used to stop the real-time transcription previously started by a `` verb.
 */
@Builder
@XmlType(name = StopTranscription.TYPE_NAME)
public class StopTranscription implements Verb {
    public static final String TYPE_NAME = "StopTranscription";

    /**
     * (required) The name of the real-time transcription to stop. This is either the user selected name when sending the  verb, or the system generated name returned in the Real-Time Transcription Started webhook if  was sent with no name attribute. If no name is specified, then all active call transcriptions will be stopped.
     */
    @XmlAttribute
    private String name;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy