Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

File metadata and controls

33 lines (24 loc) · 1.08 KB

ActionMetadata

Properties

Name Type Description Notes
flow_index Dict[str, int] [optional]
flows List[AppFlow] [optional]
index int [optional]
name str [optional]
parameters List[Parameter] [optional]

Example

from cyperf.models.action_metadata import ActionMetadata

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

# convert the object into a dict
action_metadata_dict = action_metadata_instance.to_dict()
# create an instance of ActionMetadata from a dict
action_metadata_from_dict = ActionMetadata.from_dict(action_metadata_dict)

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