com.bandwidth.voice.bxml.verbs.CustomParam 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 javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlAttribute;
import lombok.Builder;
/**
* You may specify up to 12 elements nested within a tag. These elements define optional user specified parameters that will be sent to the destination URL when the real-time transcription is first started.
*/
@Builder
@XmlType(name = CustomParam.TYPE_NAME)
public class CustomParam implements Verb {
public static final String TYPE_NAME = "CustomParam";
/**
* (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;
}