com.plivo.api.models.call.QueuedCallListResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plivo-java Show documentation
Show all versions of plivo-java Show documentation
A Java SDK to make voice calls & send SMS using Plivo and to generate Plivo XML
package com.plivo.api.models.call;
import com.plivo.api.models.base.BaseResource;
import java.util.List;
public class QueuedCallListResponse extends BaseResource {
private List calls;
public List getCalls() {
return calls;
}
@Override
public String getId() {
return getApiId();
}
}