Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 942 Bytes

ShowLinkOrEmbedding.md

File metadata and controls

28 lines (19 loc) · 942 Bytes

ShowLinkOrEmbedding

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.show_link_or_embedding import ShowLinkOrEmbedding

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

# convert the object into a dict
show_link_or_embedding_dict = show_link_or_embedding_instance.to_dict()
# create an instance of ShowLinkOrEmbedding from a dict
show_link_or_embedding_form_dict = show_link_or_embedding.from_dict(show_link_or_embedding_dict)

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