A Discussionmessage Object
Name | Type | Description | Notes |
---|---|---|---|
fki_discussionmembership_id_actionrequired | int | The unique ID of the Discussionmembership | [optional] |
t_discussionmessage_content | str | The content of the Discussionmessage | [optional] |
from eZmaxApi.models.discussionmessage_request_patch import DiscussionmessageRequestPatch
# TODO update the JSON string below
json = "{}"
# create an instance of DiscussionmessageRequestPatch from a JSON string
discussionmessage_request_patch_instance = DiscussionmessageRequestPatch.from_json(json)
# print the JSON string representation of the object
print(DiscussionmessageRequestPatch.to_json())
# convert the object into a dict
discussionmessage_request_patch_dict = discussionmessage_request_patch_instance.to_dict()
# create an instance of DiscussionmessageRequestPatch from a dict
discussionmessage_request_patch_from_dict = DiscussionmessageRequestPatch.from_dict(discussionmessage_request_patch_dict)