Name |
Type |
Description |
Notes |
from waylay.services.registry.models.archive_format_filter import ArchiveFormatFilter
# TODO update the JSON string below
json = "{}"
# create an instance of ArchiveFormatFilter from a JSON string
archive_format_filter_instance = ArchiveFormatFilter.from_json(json)
# print the JSON string representation of the object
print ArchiveFormatFilter.to_json()
# convert the object into a dict
archive_format_filter_dict = archive_format_filter_instance.to_dict()
# create an instance of ArchiveFormatFilter from a dict
archive_format_filter_form_dict = archive_format_filter.from_dict(archive_format_filter_dict)
[Back to Model list] [Back to API list] [Back to README]