Action metadata.
| Name | Type | Description | Notes |
|---|---|---|---|
| ai | List[Dict[str, object]] | List of metadata for AI originated actions. | [optional] |
| ai_originated | bool | AI originated action flag. Value is `true` if action is AI generated `false` otherwise. | [optional] |
| built_in | bool | Built-in out of the box action flag. Value is `true` if built-in action `false` otherwise. | [optional] |
| read_only | bool | Read only action flag. Value is `true` if read only `false` otherwise. | [optional] |
| sensor_imported | bool | Sensor imported action flag. Value is `true` if action is imported from sensor `false` otherwise. | [optional] |
from instana_client.models.meta_data import MetaData
# TODO update the JSON string below
json = "{}"
# create an instance of MetaData from a JSON string
meta_data_instance = MetaData.from_json(json)
# print the JSON string representation of the object
print(MetaData.to_json())
# convert the object into a dict
meta_data_dict = meta_data_instance.to_dict()
# create an instance of MetaData from a dict
meta_data_from_dict = MetaData.from_dict(meta_data_dict)