AssetStateStoreLastUpdatedBy

Writer info for the last write to an asset state store entry.

Properties

NameTypeDescriptionNotes
dag_idstr[optional]
kindAssetStateStoreWriterKind
map_indexint[optional]
run_idstr[optional]
task_idstr[optional]

Example

from airflow_client.client.models.asset_state_store_last_updated_by import AssetStateStoreLastUpdatedBy

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

# convert the object into a dict
asset_state_store_last_updated_by_dict = asset_state_store_last_updated_by_instance.to_dict()
# create an instance of AssetStateStoreLastUpdatedBy from a dict
asset_state_store_last_updated_by_from_dict = AssetStateStoreLastUpdatedBy.from_dict(asset_state_store_last_updated_by_dict)

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