Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 873 Bytes

File metadata and controls

30 lines (21 loc) · 873 Bytes

Actions

A list of Response Actions

Properties

Name Type Description Notes
data List[ResponseAction] The list of Response Actions.

Example

from sysdig_client.models.actions import Actions

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

# convert the object into a dict
actions_dict = actions_instance.to_dict()
# create an instance of Actions from a dict
actions_from_dict = Actions.from_dict(actions_dict)

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