Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1 KB

NodeRequestMetadataValue.md

File metadata and controls

29 lines (20 loc) · 1 KB

NodeRequestMetadataValue

A map of metadata properties.

Properties

Name Type Description Notes

Example

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)

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