| Name |
Type |
Description |
Notes |
| description |
str |
|
|
| image_paths |
List[str] |
|
[optional] |
| title |
str |
|
|
from kenar_api_client.models.post_edit_post_body import PostEditPostBody
# TODO update the JSON string below
json = "{}"
# create an instance of PostEditPostBody from a JSON string
post_edit_post_body_instance = PostEditPostBody.from_json(json)
# print the JSON string representation of the object
print(PostEditPostBody.to_json())
# convert the object into a dict
post_edit_post_body_dict = post_edit_post_body_instance.to_dict()
# create an instance of PostEditPostBody from a dict
post_edit_post_body_from_dict = PostEditPostBody.from_dict(post_edit_post_body_dict)
[Back to Model list] [Back to API list] [Back to README]