| Name | Type | Description | Notes |
|---|---|---|---|
| tokens | List[Token] | [optional] | |
| pagination | Pagination | [optional] |
from ibutsu_client.models.token_list import TokenList
# TODO update the JSON string below
json = "{}"
# create an instance of TokenList from a JSON string
token_list_instance = TokenList.from_json(json)
# print the JSON string representation of the object
print(TokenList.to_json())
# convert the object into a dict
token_list_dict = token_list_instance.to_dict()
# create an instance of TokenList from a dict
token_list_from_dict = TokenList.from_dict(token_list_dict)