InternalLink source configuration.
Name | Type | Description | Notes |
---|---|---|---|
id | str | Entity identifier. | [optional] |
name | str | Entity name. | [optional] |
url | str | Entity url. |
from wordlift_client.models.internal_link_source import InternalLinkSource
# TODO update the JSON string below
json = "{}"
# create an instance of InternalLinkSource from a JSON string
internal_link_source_instance = InternalLinkSource.from_json(json)
# print the JSON string representation of the object
print(InternalLinkSource.to_json())
# convert the object into a dict
internal_link_source_dict = internal_link_source_instance.to_dict()
# create an instance of InternalLinkSource from a dict
internal_link_source_from_dict = InternalLinkSource.from_dict(internal_link_source_dict)