Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

UpdateTelegramUploadTaskVM

Properties

Name Type Description Notes
bot_token str [optional]
contacts List[str] [optional]
text str [optional]
parse_mode str [optional]
t str

Example

from fastreport_cloud_sdk.models.update_telegram_upload_task_vm import UpdateTelegramUploadTaskVM

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

# convert the object into a dict
update_telegram_upload_task_vm_dict = update_telegram_upload_task_vm_instance.to_dict()
# create an instance of UpdateTelegramUploadTaskVM from a dict
update_telegram_upload_task_vm_form_dict = update_telegram_upload_task_vm.from_dict(update_telegram_upload_task_vm_dict)

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