com.bandwidth.voice.bxml.verbs.StopRecording 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.XmlType;
/**
* The StopRecording verb is used to stop a recording that was previously started by a verb.
*
* If there is not an ongoing recording at the time of this verb's execution, it has no effect. If a previous recording was paused, will end it.
*/
@Builder
@XmlType(name = StopRecording.TYPE_NAME)
public class StopRecording implements Verb {
public static final String TYPE_NAME = "StopRecording";
}