Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

PatchedWhatsappConfig.md

File metadata and controls

33 lines (24 loc) · 1.18 KB

PatchedWhatsappConfig

Properties

Name Type Description Notes
id int [optional] [readonly]
user int edX user ID [optional] [readonly]
phone_number str [optional]
date_created datetime [optional] [readonly]
last_modified datetime [optional] [readonly]

Example

from iblai.models.patched_whatsapp_config import PatchedWhatsappConfig

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

# convert the object into a dict
patched_whatsapp_config_dict = patched_whatsapp_config_instance.to_dict()
# create an instance of PatchedWhatsappConfig from a dict
patched_whatsapp_config_from_dict = PatchedWhatsappConfig.from_dict(patched_whatsapp_config_dict)

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