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

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


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 - 2025 Weber Informatics LLC | Privacy Policy