Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.34 KB

File metadata and controls

38 lines (29 loc) · 1.34 KB

ActualFlowPath

Properties

Name Type Description Notes
id str
flow_id str
source FlowNode
destination FlowNode
access_type AccessType
username str [optional]
trustee_id str [optional]
last_seen float Epoch timestamp of the last time this path was seen
first_seen float Epoch timestamp of the first time this flow was seen
path List[FlowNode]

Example

from ibm_gdsc_sdk_saas.models.actual_flow_path import ActualFlowPath

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

# convert the object into a dict
actual_flow_path_dict = actual_flow_path_instance.to_dict()
# create an instance of ActualFlowPath from a dict
actual_flow_path_from_dict = ActualFlowPath.from_dict(actual_flow_path_dict)

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