001package com.plivo.api.models.base; 002import com.fasterxml.jackson.annotation.JsonInclude; 003 004import java.lang.NoSuchMethodException; 005 006@JsonInclude(JsonInclude.Include.NON_NULL) 007public class Meta { 008 009 protected Long limit; 010 protected String next; 011 protected Long offset; 012 protected String previous; 013 protected Long totalCount; 014 015 public Long getLimit() { 016 return limit; 017 } 018 019 public String getNext() { 020 return next; 021 } 022 023 public Long getOffset() { 024 return offset; 025 } 026 027 public String getPrevious() { 028 return previous; 029 } 030 031 public Long getTotalCount() throws NoSuchMethodException { 032 return totalCount; 033 } 034}