GeneralCommand

Properties

Name Type Description Notes
name GeneralCommandType This exists simply to identify a set of known commands. [optional]
controlling_user_id str [optional]
arguments Dict[str, Optional[str]] [optional]

Example

from jellyfin.generated.api_10_11.models.general_command import GeneralCommand

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

# convert the object into a dict
general_command_dict = general_command_instance.to_dict()
# create an instance of GeneralCommand from a dict
general_command_from_dict = GeneralCommand.from_dict(general_command_dict)

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