A map of metadata properties.
Name | Type | Description | Notes |
---|
from wordlift_client.models.node_request_metadata_value import NodeRequestMetadataValue
# TODO update the JSON string below
json = "{}"
# create an instance of NodeRequestMetadataValue from a JSON string
node_request_metadata_value_instance = NodeRequestMetadataValue.from_json(json)
# print the JSON string representation of the object
print(NodeRequestMetadataValue.to_json())
# convert the object into a dict
node_request_metadata_value_dict = node_request_metadata_value_instance.to_dict()
# create an instance of NodeRequestMetadataValue from a dict
node_request_metadata_value_from_dict = NodeRequestMetadataValue.from_dict(node_request_metadata_value_dict)