Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

TelegramSettingsOptions

Properties

Name Type Description Notes
bot_username str [optional]
bot_api str [optional]
chat_id str [optional]
message_thread_id str [optional]
send_silently bool [optional]

Example

from seerr.models.telegram_settings_options import TelegramSettingsOptions

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

# convert the object into a dict
telegram_settings_options_dict = telegram_settings_options_instance.to_dict()
# create an instance of TelegramSettingsOptions from a dict
telegram_settings_options_from_dict = TelegramSettingsOptions.from_dict(telegram_settings_options_dict)

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