Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

File metadata and controls

29 lines (20 loc) · 944 Bytes

RestEPostCategory

Properties

Name Type Description Notes
name str Category name

Example

from sendx_python_sdk.models.rest_e_post_category import RestEPostCategory

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

# convert the object into a dict
rest_e_post_category_dict = rest_e_post_category_instance.to_dict()
# create an instance of RestEPostCategory from a dict
rest_e_post_category_from_dict = RestEPostCategory.from_dict(rest_e_post_category_dict)

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