| Name | Type | Description | Notes |
|---|---|---|---|
| enabled | bool | [optional] | |
| types | float | [optional] | |
| options | TelegramSettingsOptions | [optional] |
from seerr.models.telegram_settings import TelegramSettings
# TODO update the JSON string below
json = "{}"
# create an instance of TelegramSettings from a JSON string
telegram_settings_instance = TelegramSettings.from_json(json)
# print the JSON string representation of the object
print(TelegramSettings.to_json())
# convert the object into a dict
telegram_settings_dict = telegram_settings_instance.to_dict()
# create an instance of TelegramSettings from a dict
telegram_settings_from_dict = TelegramSettings.from_dict(telegram_settings_dict)