
com.plivo.api.models.base.Meta 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.base;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.lang.NoSuchMethodException;
public class Meta {
protected Long limit;
protected String next;
protected Long offset;
protected String previous;
protected Long totalCount;
public Long getLimit() {
return limit;
}
public String getNext() {
return next;
}
public Long getOffset() {
return offset;
}
public String getPrevious() {
return previous;
}
public Long getTotalCount() throws NoSuchMethodException {
return totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy