type Pagination struct {
Total int `json:"total"`
Count int `json:"count"`
PerPage int `json:"per_page"`
CurrentPage int `json:"current_page"`
TotalPages int `json:"total_pages"`
}
type Response struct {
StatusCode string `json:"status_code"`
Message string `json:"message"`
Data interface{} `json:"data"`
Meta Meta `json:"meta"`
Errors []Error `json:"errors"`
}