Value

The list of values removed from this entity as part of the change.

Properties

Name Type Description Notes
field_name str [optional]
value str [optional]

Example

from scc_firewall_manager_sdk.models.value import Value

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

# convert the object into a dict
value_dict = value_instance.to_dict()
# create an instance of Value from a dict
value_form_dict = value.from_dict(value_dict)

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