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

com.bandwidth.voice.bxml.verbs.StreamParam 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;

/**
 * Object representation of a StreamParam
 */
@Builder
@XmlType(name = StreamParam.TYPE_NAME)
public class StreamParam {
    public static final String TYPE_NAME = "StreamParam";

    /**
     * (required) The name of this parameter, up to 256 characters.
     */
    @XmlAttribute
    private String name;

    /**
     * (required) The value of this parameter, up to 2048 characters.
     */
    @XmlAttribute
    private String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy