TaglibDescriptor
Properties
| Name |
Type |
Description |
Notes |
| taglib_location |
str |
|
[optional] |
| taglib_uri |
str |
|
[optional] |
Example
from scc_firewall_manager_sdk.models.taglib_descriptor import TaglibDescriptor
# TODO update the JSON string below
json = "{}"
# create an instance of TaglibDescriptor from a JSON string
taglib_descriptor_instance = TaglibDescriptor.from_json(json)
# print the JSON string representation of the object
print(TaglibDescriptor.to_json())
# convert the object into a dict
taglib_descriptor_dict = taglib_descriptor_instance.to_dict()
# create an instance of TaglibDescriptor from a dict
taglib_descriptor_from_dict = TaglibDescriptor.from_dict(taglib_descriptor_dict)
[Back to Model list] [Back to API list] [Back to README]