Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

RestRPostCategory

Properties

Name Type Description Notes
id str Id for the post category [optional]
name str Name for the post category [optional]
created datetime Date and time when the post category was created [optional]
updated datetime Date and time when the post category was last updated [optional]

Example

from sendx_python_sdk.models.rest_r_post_category import RestRPostCategory

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

# convert the object into a dict
rest_r_post_category_dict = rest_r_post_category_instance.to_dict()
# create an instance of RestRPostCategory from a dict
rest_r_post_category_from_dict = RestRPostCategory.from_dict(rest_r_post_category_dict)

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