Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 929 Bytes

Properties.md

File metadata and controls

30 lines (21 loc) · 929 Bytes

Properties

Properties

Name Type Description Notes
name str The name of the entity. [optional]
same_as List[str] A list of sameAs entity URIs. [optional]

Example

from wordlift_client.models.properties import Properties

# TODO update the JSON string below
json = "{}"
# create an instance of Properties from a JSON string
properties_instance = Properties.from_json(json)
# print the JSON string representation of the object
print(Properties.to_json())

# convert the object into a dict
properties_dict = properties_instance.to_dict()
# create an instance of Properties from a dict
properties_from_dict = Properties.from_dict(properties_dict)

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