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

com.bandwidth.voice.bxml.verbs.StopStream 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.0
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 StopStream verb is used to stop a stream previously started by a `` verb.
 */
@Builder
@XmlType(name = StopStream.TYPE_NAME)
public class StopStream implements Verb {
    public static final String TYPE_NAME = "StopStream";

    /**
     * (required) A name to refer to this stream by. Used when sending [``][1]. If not provided, a random name will be generated and sent in the [`Media Stream Started`][2] webook. 
     */
    @XmlAttribute
    private String name;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy