com.bandwidth.sdk.model.bxml.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
The newest version!
/**
* The {@code } verb is used to stop a recording that was previously started by a {@code } verb.
*/
package com.bandwidth.sdk.model.bxml;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
@NoArgsConstructor
@Getter
@EqualsAndHashCode
public class StopRecording implements Verb {
public static final String TYPE_NAME = "StopRecording";
@Override
public String getVerbName() {
return TYPE_NAME;
}
}