A request parameter object for {@link Reply Reply}.
| 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 |
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)