Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.81 KB

DiscussionmessageResponse.md

File metadata and controls

38 lines (29 loc) · 1.81 KB

DiscussionmessageResponse

A Discussionmessage Object

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 import DiscussionmessageResponse

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

# convert the object into a dict
discussionmessage_response_dict = discussionmessage_response_instance.to_dict()
# create an instance of DiscussionmessageResponse from a dict
discussionmessage_response_form_dict = discussionmessage_response.from_dict(discussionmessage_response_dict)

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