Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.04 KB

File metadata and controls

30 lines (21 loc) · 1.04 KB

ActionInputFindParam

Properties

Name Type Description Notes
captures List[CaptureInputFindParam] [optional]
name str [optional]

Example

from cyperf.models.action_input_find_param import ActionInputFindParam

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

# convert the object into a dict
action_input_find_param_dict = action_input_find_param_instance.to_dict()
# create an instance of ActionInputFindParam from a dict
action_input_find_param_from_dict = ActionInputFindParam.from_dict(action_input_find_param_dict)

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