| Name | Type | Description | Notes |
|---|---|---|---|
| action | Action | [optional] | |
| ai_engine | str | ||
| confidence | str | ||
| policy | Policy | [optional] | |
| score | float |
from instana_client.models.action_match import ActionMatch
# TODO update the JSON string below
json = "{}"
# create an instance of ActionMatch from a JSON string
action_match_instance = ActionMatch.from_json(json)
# print the JSON string representation of the object
print(ActionMatch.to_json())
# convert the object into a dict
action_match_dict = action_match_instance.to_dict()
# create an instance of ActionMatch from a dict
action_match_from_dict = ActionMatch.from_dict(action_match_dict)