AssetStateStoreResponse

A single asset state store key/value pair with metadata.

Properties

NameTypeDescriptionNotes
keystr
last_updated_byAssetStateStoreLastUpdatedBy[optional]
updated_atdatetime
valueobject

Example

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)

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