Writer info for the last write to an asset state store entry.
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_id | str | [optional] | |
| kind | AssetStateStoreWriterKind | ||
| map_index | int | [optional] | |
| run_id | str | [optional] | |
| task_id | str | [optional] |
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)