total method

int total()

Implementation

int total() {
  try {
    var data = this['data']['response']['meta']['total'];
    return data;
  } catch(exception) {
    return -1;
  }
}