Total count of items, current offset and page limit
| Name | Type | Description | Notes |
|---|---|---|---|
| page | MetaPage | [optional] |
from bsg_api.models.meta import Meta
# TODO update the JSON string below
json = "{}"
# create an instance of Meta from a JSON string
meta_instance = Meta.from_json(json)
# print the JSON string representation of the object
print(Meta.to_json())
# convert the object into a dict
meta_dict = meta_instance.to_dict()
# create an instance of Meta from a dict
meta_from_dict = Meta.from_dict(meta_dict)