A single asset state store key/value pair with metadata.
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | ||
| last_updated_by | AssetStateStoreLastUpdatedBy | [optional] | |
| updated_at | datetime | ||
| value | object |
from airflow_client.client.models.asset_state_store_response import AssetStateStoreResponse # TODO update the JSON string below json = "{}" # create an instance of AssetStateStoreResponse from a JSON string asset_state_store_response_instance = AssetStateStoreResponse.from_json(json) # print the JSON string representation of the object print(AssetStateStoreResponse.to_json()) # convert the object into a dict asset_state_store_response_dict = asset_state_store_response_instance.to_dict() # create an instance of AssetStateStoreResponse from a dict asset_state_store_response_from_dict = AssetStateStoreResponse.from_dict(asset_state_store_response_dict)