Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.4 KB

Command.md

File metadata and controls

40 lines (31 loc) · 1.4 KB

Command

Properties

Name Type Description Notes
send_updates_to_client bool [optional]
update_scheduled_task bool [optional] [readonly]
completion_message str [optional] [readonly]
requires_disk_access bool [optional] [readonly]
is_exclusive bool [optional] [readonly]
is_long_running bool [optional] [readonly]
name str [optional] [readonly]
last_execution_time datetime [optional]
last_start_time datetime [optional]
trigger CommandTrigger [optional]
suppress_messages bool [optional]
client_user_agent str [optional]

Example

from sonarr.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]