BundleWriteRequest is used to request the writing of a bundle. It contains the tenant_id to identify the tenant and the Bundles object.
Name | Type | Description | Notes |
---|---|---|---|
bundles | List[DataBundle] | Contains the bundle data to be written. | [optional] |
from permify.models.bundle_write_body import BundleWriteBody
# TODO update the JSON string below
json = "{}"
# create an instance of BundleWriteBody from a JSON string
bundle_write_body_instance = BundleWriteBody.from_json(json)
# print the JSON string representation of the object
print(BundleWriteBody.to_json())
# convert the object into a dict
bundle_write_body_dict = bundle_write_body_instance.to_dict()
# create an instance of BundleWriteBody from a dict
bundle_write_body_from_dict = BundleWriteBody.from_dict(bundle_write_body_dict)