Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.33 KB

File metadata and controls

38 lines (29 loc) · 1.33 KB

PostStatus

Properties

Name Type Description Notes
comments_count int [optional]
conditions List[Condition] [optional]
contributors List[str] [optional]
excerpt str [optional]
hide_from_list bool see {@link Category.CategorySpec#isHideFromList Category.CategorySpec#isHideFromList()}. [optional]
in_progress bool [optional]
last_modify_time datetime [optional]
observed_version int [optional]
permalink str [optional]
phase str [optional]

Example

from halo_client.models.post_status import PostStatus

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

# convert the object into a dict
post_status_dict = post_status_instance.to_dict()
# create an instance of PostStatus from a dict
post_status_from_dict = PostStatus.from_dict(post_status_dict)

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