Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.3 KB

PatchedSlackConfig.md

File metadata and controls

34 lines (25 loc) · 1.3 KB

PatchedSlackConfig

Properties

Name Type Description Notes
id int [optional] [readonly]
user int edX user ID [optional] [readonly]
slack_team_domain str Team Domain in the stated slack workspace. This is also the workspace name. [optional]
slack_username str Username in the stated slack workspace [optional]
date_created datetime [optional] [readonly]
last_modified datetime [optional] [readonly]

Example

from iblai.models.patched_slack_config import PatchedSlackConfig

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

# convert the object into a dict
patched_slack_config_dict = patched_slack_config_instance.to_dict()
# create an instance of PatchedSlackConfig from a dict
patched_slack_config_from_dict = PatchedSlackConfig.from_dict(patched_slack_config_dict)

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