Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
from permify.models.bundle_delete_response import BundleDeleteResponse
# TODO update the JSON string below
json = "{}"
# create an instance of BundleDeleteResponse from a JSON string
bundle_delete_response_instance = BundleDeleteResponse.from_json(json)
# print the JSON string representation of the object
print(BundleDeleteResponse.to_json())
# convert the object into a dict
bundle_delete_response_dict = bundle_delete_response_instance.to_dict()
# create an instance of BundleDeleteResponse from a dict
bundle_delete_response_from_dict = BundleDeleteResponse.from_dict(bundle_delete_response_dict)
[Back to Model list] [Back to API list] [Back to README]