Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 986 Bytes

File metadata and controls

31 lines (22 loc) · 986 Bytes

ActionInput

Properties

Name Type Description Notes
captures List[CaptureInput] [optional]
name str [optional]
parameters List[Parameter] [optional]

Example

from cyperf.models.action_input import ActionInput

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

# convert the object into a dict
action_input_dict = action_input_instance.to_dict()
# create an instance of ActionInput from a dict
action_input_from_dict = ActionInput.from_dict(action_input_dict)

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