A Discussionmessage Object and children
Name | Type | Description | Notes |
---|---|---|---|
pki_discussionmessage_id | int | The unique ID of the Discussionmessage | [optional] |
fki_discussion_id | int | The unique ID of the Discussion | |
fki_discussionmembership_id_actionrequired | int | The unique ID of the Discussionmembership | [optional] |
t_discussionmessage_content | str | The content of the Discussionmessage |
from eZmaxApi.models.discussionmessage_request_compound import DiscussionmessageRequestCompound
# TODO update the JSON string below
json = "{}"
# create an instance of DiscussionmessageRequestCompound from a JSON string
discussionmessage_request_compound_instance = DiscussionmessageRequestCompound.from_json(json)
# print the JSON string representation of the object
print(DiscussionmessageRequestCompound.to_json())
# convert the object into a dict
discussionmessage_request_compound_dict = discussionmessage_request_compound_instance.to_dict()
# create an instance of DiscussionmessageRequestCompound from a dict
discussionmessage_request_compound_from_dict = DiscussionmessageRequestCompound.from_dict(discussionmessage_request_compound_dict)