EntitiesInner4

Properties

NameTypeDescriptionNotes
descriptionstr[optional]
keystr
team_namestr[optional]
valueobject

Example

from airflow_client.client.models.entities_inner4 import EntitiesInner4

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

# convert the object into a dict
entities_inner4_dict = entities_inner4_instance.to_dict()
# create an instance of EntitiesInner4 from a dict
entities_inner4_from_dict = EntitiesInner4.from_dict(entities_inner4_dict)

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