Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

File metadata and controls

35 lines (26 loc) · 1.17 KB

CommentRequest

Request parameter object for {@link Comment Comment}.

Properties

Name Type Description Notes
allow_notification bool [optional] [default to False]
content str
hidden bool [optional] [default to False]
owner CommentEmailOwner [optional]
raw str
subject_ref Ref

Example

from halo_client.models.comment_request import CommentRequest

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

# convert the object into a dict
comment_request_dict = comment_request_instance.to_dict()
# create an instance of CommentRequest from a dict
comment_request_from_dict = CommentRequest.from_dict(comment_request_dict)

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