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

com.bandwidth.sdk.model.bxml.AudioProducer Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

The newest version!
package com.bandwidth.sdk.model.bxml;

import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

/**
 * A marker interface for BXML verbs that process audio output. The class annotations describe how
 * Jackson should serialize and deserialize verbs.
 */
@JsonSubTypes({
        @JsonSubTypes.Type(value = PlayAudio.class, name = PlayAudio.TYPE_NAME),
        @JsonSubTypes.Type(value = SpeakSentence.class, name = SpeakSentence.TYPE_NAME),
})
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, property = "name")
public interface AudioProducer extends Verb {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy