Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 984 Bytes

File metadata and controls

29 lines (20 loc) · 984 Bytes

LastSeenMetadata

Properties

Name Type Description Notes
token_id str The ID of the token used in the member's last session [optional]

Example

from launchdarkly_api.models.last_seen_metadata import LastSeenMetadata

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

# convert the object into a dict
last_seen_metadata_dict = last_seen_metadata_instance.to_dict()
# create an instance of LastSeenMetadata from a dict
last_seen_metadata_from_dict = LastSeenMetadata.from_dict(last_seen_metadata_dict)

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