Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.64 KB

DiscussionmembershipResponse.md

File metadata and controls

36 lines (27 loc) · 1.64 KB

DiscussionmembershipResponse

A Discussionmembership Object

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

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

# convert the object into a dict
discussionmembership_response_dict = discussionmembership_response_instance.to_dict()
# create an instance of DiscussionmembershipResponse from a dict
discussionmembership_response_form_dict = discussionmembership_response.from_dict(discussionmembership_response_dict)

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