Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

AssetConditionContentType.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

AssetConditionContentType

Allowed content type(s) of matching files.

Properties

Name Type Description Notes

Example

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)

[Back to Model list] [Back to API list] [Back to README]