Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 889 Bytes

File metadata and controls

29 lines (20 loc) · 889 Bytes

BundleReadBody

Properties

Name Type Description Notes
name str [optional]

Example

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_form_dict = bundle_read_body.from_dict(bundle_read_body_dict)

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