SourcePortContent

The source port.

Properties

Name Type Description Notes
elements List[str] The list of elements. [optional]
name str The name
type str The type of the policy object. [optional]
uid str The unique identifier. [optional]

Example

from scc_firewall_manager_sdk.models.source_port_content import SourcePortContent

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

# convert the object into a dict
source_port_content_dict = source_port_content_instance.to_dict()
# create an instance of SourcePortContent from a dict
source_port_content_form_dict = source_port_content.from_dict(source_port_content_dict)

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