Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

Snapshot

Properties

Name Type Description Notes
timestamp int The Unix timestamp in milliseconds at which the snapshot was taken [optional]
values List[List[AttackMetadataKeywordsInner]] The values of the snapshot. The order of the values corresponds to the order of columns in result. [optional]

Example

from cyperf.models.snapshot import Snapshot

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

# convert the object into a dict
snapshot_dict = snapshot_instance.to_dict()
# create an instance of Snapshot from a dict
snapshot_from_dict = Snapshot.from_dict(snapshot_dict)

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