Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.46 KB

File metadata and controls

34 lines (25 loc) · 1.46 KB

MetaData

Action metadata.

Properties

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]

Example

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)

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