ch.loway.oss.ari4java.generated.actions.requests.BridgesSetVideoSourcePostRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ari4java Show documentation
Show all versions of ari4java Show documentation
Asterisk ARI interface bindings for Java
package ch.loway.oss.ari4java.generated.actions.requests;
// ----------------------------------------------------
// THIS CLASS WAS GENERATED AUTOMATICALLY
// PLEASE DO NOT EDIT
// Generated on: Mon Jul 11 11:00:30 SAST 2022
// ----------------------------------------------------
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.ArrayList;
import ch.loway.oss.ari4java.tools.*;
import ch.loway.oss.ari4java.tools.tags.EventSource;
import ch.loway.oss.ari4java.generated.actions.requests.*;
import ch.loway.oss.ari4java.generated.models.Module;
import ch.loway.oss.ari4java.generated.models.*;
/** Generated by: JavaInterface */
public interface BridgesSetVideoSourcePostRequest {
/**
* @param channelId Channel's id
* @return BridgesSetVideoSourcePostRequest
* @since ARI_1_10_0
*/
public BridgesSetVideoSourcePostRequest setChannelId(String channelId);
/**
* @param callback AriCallback>Void<
* @since ARI_1_10_0
*/
public void execute(AriCallback callback);
/**
* @param bridgeId Bridge's id
* @return BridgesSetVideoSourcePostRequest
* @since ARI_1_10_0
*/
public BridgesSetVideoSourcePostRequest setBridgeId(String bridgeId);
/**
* @throws RestException an error
* @since ARI_1_10_0
*/
public void execute() throws RestException;
}