Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.23 KB

File metadata and controls

30 lines (21 loc) · 1.23 KB

SessionReplayTimestamps

Properties

Name Type Description Notes
first_image_timestamp int Timestamp of the first image in the session (epoch milliseconds). Null if no images exist. [optional]
last_image_timestamp int Timestamp of the last image in the session (epoch milliseconds). Null if no images exist. [optional]

Example

from instana_client.models.session_replay_timestamps import SessionReplayTimestamps

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

# convert the object into a dict
session_replay_timestamps_dict = session_replay_timestamps_instance.to_dict()
# create an instance of SessionReplayTimestamps from a dict
session_replay_timestamps_from_dict = SessionReplayTimestamps.from_dict(session_replay_timestamps_dict)

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