Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.25 KB

File metadata and controls

34 lines (25 loc) · 1.25 KB

ReplayCapture

Properties

Name Type Description Notes
flows List[AppFlow] The list of flows [optional]
id str The unique identifier of the application [optional] [readonly]
links List[APILink] [optional]
name str [optional]
owner str The user-visible name of the file's owner [optional] [readonly]
owner_id str The unique identifier of the file's owner [optional] [readonly]

Example

from cyperf.models.replay_capture import ReplayCapture

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

# convert the object into a dict
replay_capture_dict = replay_capture_instance.to_dict()
# create an instance of ReplayCapture from a dict
replay_capture_from_dict = ReplayCapture.from_dict(replay_capture_dict)

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