SharedObjectValue¶
The value of the object
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| default_content | ObjectContent | ||
| object_type | str | The type of object | |
| overrides | List[Override] | The list of target overrides for the object. Each override the default content for its target. | [optional] |
Example¶
from scc_firewall_manager_sdk.models.shared_object_value import SharedObjectValue
# TODO update the JSON string below
json = "{}"
# create an instance of SharedObjectValue from a JSON string
shared_object_value_instance = SharedObjectValue.from_json(json)
# print the JSON string representation of the object
print(SharedObjectValue.to_json())
# convert the object into a dict
shared_object_value_dict = shared_object_value_instance.to_dict()
# create an instance of SharedObjectValue from a dict
shared_object_value_form_dict = shared_object_value.from_dict(shared_object_value_dict)