fromavis_client.models.product_categoryimportProductCategory# TODO update the JSON string belowjson="{}"# create an instance of ProductCategory from a JSON stringproduct_category_instance=ProductCategory.from_json(json)# print the JSON string representation of the objectprintProductCategory.to_json()# convert the object into a dictproduct_category_dict=product_category_instance.to_dict()# create an instance of ProductCategory from a dictproduct_category_form_dict=product_category.from_dict(product_category_dict)