Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

BundleWriteResponse.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

BundleWriteResponse

BundleWriteResponse is the response for a BundleWriteRequest. It includes a name which could be used as an identifier or acknowledgment.

Properties

Name Type Description Notes
names List[str] Identifier or acknowledgment of the written bundle. [optional]

Example

from permify.models.bundle_write_response import BundleWriteResponse

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

# convert the object into a dict
bundle_write_response_dict = bundle_write_response_instance.to_dict()
# create an instance of BundleWriteResponse from a dict
bundle_write_response_from_dict = BundleWriteResponse.from_dict(bundle_write_response_dict)

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