Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 957 Bytes

File metadata and controls

32 lines (23 loc) · 957 Bytes

LinkGroup

Properties

Name Type Description Notes
identifier str [optional]
iri str [optional]
items List[Item] [optional]
name str [optional]

Example

from wordlift_client.models.link_group import LinkGroup

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

# convert the object into a dict
link_group_dict = link_group_instance.to_dict()
# create an instance of LinkGroup from a dict
link_group_from_dict = LinkGroup.from_dict(link_group_dict)

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