Allowed content type(s) of matching files.
Name | Type | Description | Notes |
---|
from waylay.services.registry.models.asset_condition_content_type import AssetConditionContentType
# TODO update the JSON string below
json = "{}"
# create an instance of AssetConditionContentType from a JSON string
asset_condition_content_type_instance = AssetConditionContentType.from_json(json)
# print the JSON string representation of the object
print AssetConditionContentType.to_json()
# convert the object into a dict
asset_condition_content_type_dict = asset_condition_content_type_instance.to_dict()
# create an instance of AssetConditionContentType from a dict
asset_condition_content_type_form_dict = asset_condition_content_type.from_dict(asset_condition_content_type_dict)