SaveCommentsResponseWithPresence
| Name |
Type |
Description |
Notes |
| status |
APIStatus |
|
|
| comment |
PublicComment |
|
|
| user |
UserSessionInfo |
|
|
| module_data |
Dict[str, object] |
Construct a type with a set of properties K of type T |
[optional] |
| user_id_ws |
str |
|
[optional] |
from client.models.save_comments_response_with_presence import SaveCommentsResponseWithPresence
# TODO update the JSON string below
json = "{}"
# create an instance of SaveCommentsResponseWithPresence from a JSON string
save_comments_response_with_presence_instance = SaveCommentsResponseWithPresence.from_json(json)
# print the JSON string representation of the object
print(SaveCommentsResponseWithPresence.to_json())
# convert the object into a dict
save_comments_response_with_presence_dict = save_comments_response_with_presence_instance.to_dict()
# create an instance of SaveCommentsResponseWithPresence from a dict
save_comments_response_with_presence_from_dict = SaveCommentsResponseWithPresence.from_dict(save_comments_response_with_presence_dict)
[Back to Model list] [Back to API list] [Back to README]