Name | Type | Description | Notes |
---|---|---|---|
message | str | [optional] | |
type | ProviderMessageType | [optional] |
from sonarr.models.provider_message import ProviderMessage
# TODO update the JSON string below
json = "{}"
# create an instance of ProviderMessage from a JSON string
provider_message_instance = ProviderMessage.from_json(json)
# print the JSON string representation of the object
print(ProviderMessage.to_json())
# convert the object into a dict
provider_message_dict = provider_message_instance.to_dict()
# create an instance of ProviderMessage from a dict
provider_message_from_dict = ProviderMessage.from_dict(provider_message_dict)