
com.plivo.api.models.node.Node 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.node;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.plivo.api.models.base.BaseResource;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Node extends BaseResource {
private String phloId;
private String nodeId;
private String nodeType;
private String name;
private String createdOn;
public String getNodeId() {
return nodeId;
}
public String getPhloId() {
return phloId;
}
public String getNodeType() {
return nodeType;
}
@Override
public String getId() {
return getNodeId();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy