Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.93 KB

DiscussionmessageResponseCompound.md

File metadata and controls

38 lines (29 loc) · 1.93 KB

DiscussionmessageResponseCompound

A Discussionmessage Object and children

Properties

Name Type Description Notes
pki_discussionmessage_id int The unique ID of the Discussionmessage
fki_discussion_id int The unique ID of the Discussion
fki_discussionmembership_id int The unique ID of the Discussionmembership [optional]
fki_discussionmembership_id_actionrequired int The unique ID of the Discussionmembership [optional]
e_discussionmessage_status FieldEDiscussionmessageStatus
t_discussionmessage_content str The content of the Discussionmessage
s_discussionmessage_creatorname str The name the creator of the Discussionmessage.
s_discussionmessage_actionrequiredname str The name the Actionrequired of the Discussionmessage. [optional]
obj_audit CommonAudit

Example

from eZmaxApi.models.discussionmessage_response_compound import DiscussionmessageResponseCompound

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

# convert the object into a dict
discussionmessage_response_compound_dict = discussionmessage_response_compound_instance.to_dict()
# create an instance of DiscussionmessageResponseCompound from a dict
discussionmessage_response_compound_form_dict = discussionmessage_response_compound.from_dict(discussionmessage_response_compound_dict)

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