
com.plivo.api.models.phlo.Phlo 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.phlo;
import com.plivo.api.models.base.BaseResource;
public class Phlo extends BaseResource {
private String phloId;
private String name;
private String createdOn;
private String runID;
public static PhloUpdater updater(String phloId){
return new PhloUpdater(phloId);
}
public static PhloGetter getter(String phloId) {
return new PhloGetter(phloId);
}
public static PhloRunGetter phloRunGetter(String phloId, String runId) {
return new PhloRunGetter(phloId, runId);
}
public String getRunID() {
return runID;
}
public void setRunID(String runID) {
this.runID = runID;
}
@Override
public String getId() {
return phloId;
}
public String getCreatedOn() {
return createdOn;
}
public void setPhloId(String phloId) {
this.phloId = phloId;
}
public void setName(String name) {
this.name = name;
}
public void setCreatedOn(String createdOn) {
this.createdOn = createdOn;
}
public String getName() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy