Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 970 Bytes

File metadata and controls

31 lines (22 loc) · 970 Bytes

PostRequest

Post and content data for creating and updating post.

Properties

Name Type Description Notes
content ContentUpdateParam
post Post

Example

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)

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