Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

File metadata and controls

35 lines (26 loc) · 1.14 KB

ReplyRequest

A request parameter object for {@link Reply Reply}.

Properties

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

Example

from halo_client.models.reply_request import ReplyRequest

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

# convert the object into a dict
reply_request_dict = reply_request_instance.to_dict()
# create an instance of ReplyRequest from a dict
reply_request_from_dict = ReplyRequest.from_dict(reply_request_dict)

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