Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.34 KB

File metadata and controls

36 lines (27 loc) · 1.34 KB

Command

Properties

Name Type Description Notes
action_id str The internal ID of the command [optional] [readonly]
description str The description of the command [optional]
exchanges List[Exchange] The exchanges of the command [optional]
is_strike bool Indicates if the command is a strike [optional] [readonly]
metadata Metadata [optional]
name str The name of the command [optional] [readonly]
parameters List[Parameter] The parameters of the command [optional]
links List[APILink] [optional]

Example

from cyperf.models.command import Command

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

# convert the object into a dict
command_dict = command_instance.to_dict()
# create an instance of Command from a dict
command_from_dict = Command.from_dict(command_dict)

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