type Paginator struct {
TotalRecords int `json:"total_records"`
TotalPages int `json:"total_pages"`
Records interface{} `json:"records"`
Offset int `json:"offset"`
PerPage int `json:"per_page"`
CurrentPage int `json:"cur_page"`
PrevPage int `json:"prev_page"`
NextPage int `json:"next_page"`
}