Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 950 Bytes

File metadata and controls

34 lines (25 loc) · 950 Bytes

Post

Post extension.

Properties

Name Type Description Notes
api_version str
kind str
metadata Metadata
spec PostSpec
status PostStatus [optional]

Example

from halo_client.models.post import Post

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

# convert the object into a dict
post_dict = post_instance.to_dict()
# create an instance of Post from a dict
post_from_dict = Post.from_dict(post_dict)

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