Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 966 Bytes

BundleReadResponse.md

File metadata and controls

29 lines (20 loc) · 966 Bytes

BundleReadResponse

Properties

Name Type Description Notes
bundle DataBundle [optional]

Example

from permify.models.bundle_read_response import BundleReadResponse

# TODO update the JSON string below
json = "{}"
# create an instance of BundleReadResponse from a JSON string
bundle_read_response_instance = BundleReadResponse.from_json(json)
# print the JSON string representation of the object
print(BundleReadResponse.to_json())

# convert the object into a dict
bundle_read_response_dict = bundle_read_response_instance.to_dict()
# create an instance of BundleReadResponse from a dict
bundle_read_response_from_dict = BundleReadResponse.from_dict(bundle_read_response_dict)

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