Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

PostCanUserSubmitPostResponse

Properties

Name Type Description Notes
can_submit bool [optional]

Example

from kenar_api_client.models.post_can_user_submit_post_response import PostCanUserSubmitPostResponse

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

# convert the object into a dict
post_can_user_submit_post_response_dict = post_can_user_submit_post_response_instance.to_dict()
# create an instance of PostCanUserSubmitPostResponse from a dict
post_can_user_submit_post_response_from_dict = PostCanUserSubmitPostResponse.from_dict(post_can_user_submit_post_response_dict)

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