Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

DiscussionRequestPatch.md

File metadata and controls

31 lines (22 loc) · 1.12 KB

DiscussionRequestPatch

A Discussion Object

Properties

Name Type Description Notes
s_discussion_description str The description of the Discussion [optional]
b_discussion_closed bool Whether if it's an closed [optional]

Example

from eZmaxApi.models.discussion_request_patch import DiscussionRequestPatch

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

# convert the object into a dict
discussion_request_patch_dict = discussion_request_patch_instance.to_dict()
# create an instance of DiscussionRequestPatch from a dict
discussion_request_patch_form_dict = discussion_request_patch.from_dict(discussion_request_patch_dict)

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