| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the bundle | [optional] |
| identifier | str | Identifier of the bundle | [optional] |
| type | str | [optional] | |
| rules | List[Rule] | [optional] |
from sysdig_client.models.bundle import Bundle
# TODO update the JSON string below
json = "{}"
# create an instance of Bundle from a JSON string
bundle_instance = Bundle.from_json(json)
# print the JSON string representation of the object
print(Bundle.to_json())
# convert the object into a dict
bundle_dict = bundle_instance.to_dict()
# create an instance of Bundle from a dict
bundle_from_dict = Bundle.from_dict(bundle_dict)