Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

File metadata and controls

35 lines (26 loc) · 1.12 KB

AddInput

Properties

Name Type Description Notes
action_index int [optional]
action_name str [optional]
captures List[CaptureInput] [optional]
exchange_index_insert_at int [optional]
flow_index_insert_at int [optional]
parameters List[Parameter] [optional]
type str [optional]

Example

from cyperf.models.add_input import AddInput

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

# convert the object into a dict
add_input_dict = add_input_instance.to_dict()
# create an instance of AddInput from a dict
add_input_from_dict = AddInput.from_dict(add_input_dict)

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