Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

ExtraLinkCollection

The collection of extra links.

Properties

Name Type Description Notes
extra_links List[ExtraLink] [optional]

Example

from titanium_airflow_client.models.extra_link_collection import ExtraLinkCollection

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

# convert the object into a dict
extra_link_collection_dict = extra_link_collection_instance.to_dict()
# create an instance of ExtraLinkCollection from a dict
extra_link_collection_from_dict = ExtraLinkCollection.from_dict(extra_link_collection_dict)

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