Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

BundleWriteBody.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

BundleWriteBody

BundleWriteRequest is used to request the writing of a bundle. It contains the tenant_id to identify the tenant and the Bundles object.

Properties

Name Type Description Notes
bundles List[DataBundle] Contains the bundle data to be written. [optional]

Example

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)

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