com.bandwidth.voice.bxml.verbs.StopStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
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;
}