Post and content data for creating and updating post.
| Name | Type | Description | Notes |
|---|---|---|---|
| content | ContentUpdateParam | ||
| post | Post |
from halo_client.models.post_request import PostRequest
# TODO update the JSON string below
json = "{}"
# create an instance of PostRequest from a JSON string
post_request_instance = PostRequest.from_json(json)
# print the JSON string representation of the object
print(PostRequest.to_json())
# convert the object into a dict
post_request_dict = post_request_instance.to_dict()
# create an instance of PostRequest from a dict
post_request_from_dict = PostRequest.from_dict(post_request_dict)