Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

File metadata and controls

31 lines (22 loc) · 966 Bytes

Tokens

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]