| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[Token] | An array of access tokens | [optional] |
| links | Dict[str, Link] | [optional] | |
| total_count | int | The number of access tokens returned | [optional] |
from launchdarkly_api.models.tokens import Tokens
# TODO update the JSON string below
json = "{}"
# create an instance of Tokens from a JSON string
tokens_instance = Tokens.from_json(json)
# print the JSON string representation of the object
print(Tokens.to_json())
# convert the object into a dict
tokens_dict = tokens_instance.to_dict()
# create an instance of Tokens from a dict
tokens_from_dict = Tokens.from_dict(tokens_dict)