UrlObjectContent
Properties
| Name |
Type |
Description |
Notes |
| url |
str |
The URL literal |
|
Example
from scc_firewall_manager_sdk.models.url_object_content import UrlObjectContent
# TODO update the JSON string below
json = "{}"
# create an instance of UrlObjectContent from a JSON string
url_object_content_instance = UrlObjectContent.from_json(json)
# print the JSON string representation of the object
print(UrlObjectContent.to_json())
# convert the object into a dict
url_object_content_dict = url_object_content_instance.to_dict()
# create an instance of UrlObjectContent from a dict
url_object_content_form_dict = url_object_content.from_dict(url_object_content_dict)
[Back to Model list] [Back to API list] [Back to README]