Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] |
from permify.models.bundle_read_body import BundleReadBody
# TODO update the JSON string below
json = "{}"
# create an instance of BundleReadBody from a JSON string
bundle_read_body_instance = BundleReadBody.from_json(json)
# print the JSON string representation of the object
print(BundleReadBody.to_json())
# convert the object into a dict
bundle_read_body_dict = bundle_read_body_instance.to_dict()
# create an instance of BundleReadBody from a dict
bundle_read_body_from_dict = BundleReadBody.from_dict(bundle_read_body_dict)