Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

ManagementDevelopmentPost

Properties

Name Type Description Notes
category str [optional]
created_at datetime [optional]
mng_token str [optional]
token str [optional]

Example

from kenar_api_client.models.management_development_post import ManagementDevelopmentPost

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

# convert the object into a dict
management_development_post_dict = management_development_post_instance.to_dict()
# create an instance of ManagementDevelopmentPost from a dict
management_development_post_from_dict = ManagementDevelopmentPost.from_dict(management_development_post_dict)

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