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

Latest commit

 

History

History
32 lines (23 loc) · 1.01 KB

File metadata and controls

32 lines (23 loc) · 1.01 KB

ExtraLink

Additional links containing additional information about the task.

Properties

Name Type Description Notes
class_ref ClassReference [optional]
name str [optional] [readonly]
href str [optional] [readonly]

Example

from titanium_airflow_client.models.extra_link import ExtraLink

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

# convert the object into a dict
extra_link_dict = extra_link_instance.to_dict()
# create an instance of ExtraLink from a dict
extra_link_from_dict = ExtraLink.from_dict(extra_link_dict)

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