001package com.plivo.api.models.base;
002
003public class Meta {
004
005  private Long limit;
006  private String next;
007  private Long offset;
008  private String previous;
009  private Long totalCount;
010
011  public Long getLimit() {
012    return limit;
013  }
014
015  public String getNext() {
016    return next;
017  }
018
019  public Long getOffset() {
020    return offset;
021  }
022
023  public String getPrevious() {
024    return previous;
025  }
026
027  public Long getTotalCount() {
028    return totalCount;
029  }
030}