Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

BundleResource

Properties

Name Type Description Notes
bundle_id UUID The ID of the bundle containing the resource. [optional] [readonly]
resource_id UUID The ID of the resource within a bundle. [optional] [readonly]
access_level_name str The access level of the resource within a bundle. [optional]
access_level_remote_id str The remote ID of the access level of the resource within a bundle. [optional]

Example

from opal_security.models.bundle_resource import BundleResource

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

# convert the object into a dict
bundle_resource_dict = bundle_resource_instance.to_dict()
# create an instance of BundleResource from a dict
bundle_resource_from_dict = BundleResource.from_dict(bundle_resource_dict)

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