Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.46 KB

DiscussionmessageRequestCompound.md

File metadata and controls

33 lines (24 loc) · 1.46 KB

DiscussionmessageRequestCompound

A Discussionmessage Object and children

Properties

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

Example

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_form_dict = discussionmessage_request_compound.from_dict(discussionmessage_request_compound_dict)

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