Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.76 KB

DiscussionmembershipResponseCompound.md

File metadata and controls

36 lines (27 loc) · 1.76 KB

DiscussionmembershipResponseCompound

A Discussionmembership Object and children

Properties

Name Type Description Notes
pki_discussionmembership_id int The unique ID of the Discussionmembership
fki_discussion_id int The unique ID of the Discussion
fki_user_id int The unique ID of the User [optional]
fki_usergroup_id int The unique ID of the Usergroup [optional]
fki_modulesection_id int The unique ID of the Modulesection [optional]
s_discussionmembership_description str The Description containing the detail of who the Discussionmembership refers to
dt_discussionmembership_joined str The joined date of the Discussionmembership

Example

from eZmaxApi.models.discussionmembership_response_compound import DiscussionmembershipResponseCompound

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

# convert the object into a dict
discussionmembership_response_compound_dict = discussionmembership_response_compound_instance.to_dict()
# create an instance of DiscussionmembershipResponseCompound from a dict
discussionmembership_response_compound_form_dict = discussionmembership_response_compound.from_dict(discussionmembership_response_compound_dict)

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