| Name | Type | Description | Notes |
|---|---|---|---|
| pagination | Pagination | ||
| results | List[Token] | ||
| autocomplete | Dict[str, object] |
from authentik_client.models.paginated_token_list import PaginatedTokenList
# TODO update the JSON string below
json = "{}"
# create an instance of PaginatedTokenList from a JSON string
paginated_token_list_instance = PaginatedTokenList.from_json(json)
# print the JSON string representation of the object
print(PaginatedTokenList.to_json())
# convert the object into a dict
paginated_token_list_dict = paginated_token_list_instance.to_dict()
# create an instance of PaginatedTokenList from a dict
paginated_token_list_from_dict = PaginatedTokenList.from_dict(paginated_token_list_dict)