You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CreateBundleInfo Object ### Description The CreateBundleInfo object is used to store creation info for a bundle. ### Usage Example Use in the POST Bundles endpoint.
Properties
Name
Type
Description
Notes
name
str
The name of the bundle.
description
str
A brief description of the bundle.
[optional]
admin_owner_id
str
The ID of the bundle's admin owner.
Example
fromopal_security.models.create_bundle_infoimportCreateBundleInfo# TODO update the JSON string belowjson="{}"# create an instance of CreateBundleInfo from a JSON stringcreate_bundle_info_instance=CreateBundleInfo.from_json(json)
# print the JSON string representation of the objectprint(CreateBundleInfo.to_json())
# convert the object into a dictcreate_bundle_info_dict=create_bundle_info_instance.to_dict()
# create an instance of CreateBundleInfo from a dictcreate_bundle_info_from_dict=CreateBundleInfo.from_dict(create_bundle_info_dict)