Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

InternalLinkSource.md

File metadata and controls

32 lines (23 loc) · 1.06 KB

InternalLinkSource

InternalLink source configuration.

Properties

Name Type Description Notes
id str Entity identifier. [optional]
name str Entity name. [optional]
url str Entity url.

Example

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)

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