Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.1 KB

File metadata and controls

33 lines (24 loc) · 1.1 KB

TokenSummary

Properties

Name Type Description Notes
links Dict[str, Link] [optional]
id str [optional]
name str The name of the token [optional]
ending str The last few characters of the token [optional]
service_token bool Whether this is a service token [optional]

Example

from launchdarkly_api.models.token_summary import TokenSummary

# TODO update the JSON string below
json = "{}"
# create an instance of TokenSummary from a JSON string
token_summary_instance = TokenSummary.from_json(json)
# print the JSON string representation of the object
print(TokenSummary.to_json())

# convert the object into a dict
token_summary_dict = token_summary_instance.to_dict()
# create an instance of TokenSummary from a dict
token_summary_from_dict = TokenSummary.from_dict(token_summary_dict)

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