Other key-value properties provisioned by the user.
Name | Type | Description | Notes |
---|---|---|---|
ref | str | A URI for the Resource, formatted as `/resources/{resourceId}` |
from waylay.services.resources.models.metadata_entity_value import MetadataEntityValue
# TODO update the JSON string below
json = "{}"
# create an instance of MetadataEntityValue from a JSON string
metadata_entity_value_instance = MetadataEntityValue.from_json(json)
# print the JSON string representation of the object
print MetadataEntityValue.to_json()
# convert the object into a dict
metadata_entity_value_dict = metadata_entity_value_instance.to_dict()
# create an instance of MetadataEntityValue from a dict
metadata_entity_value_form_dict = metadata_entity_value.from_dict(metadata_entity_value_dict)