JspConfigDescriptor
Properties
Example
from scc_firewall_manager_sdk.models.jsp_config_descriptor import JspConfigDescriptor
# TODO update the JSON string below
json = "{}"
# create an instance of JspConfigDescriptor from a JSON string
jsp_config_descriptor_instance = JspConfigDescriptor.from_json(json)
# print the JSON string representation of the object
print(JspConfigDescriptor.to_json())
# convert the object into a dict
jsp_config_descriptor_dict = jsp_config_descriptor_instance.to_dict()
# create an instance of JspConfigDescriptor from a dict
jsp_config_descriptor_from_dict = JspConfigDescriptor.from_dict(jsp_config_descriptor_dict)
[Back to Model list] [Back to API list] [Back to README]