Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1011 Bytes

File metadata and controls

33 lines (24 loc) · 1011 Bytes

ActionMatch

Properties

Name Type Description Notes
action Action [optional]
ai_engine str
confidence str
policy Policy [optional]
score float

Example

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)

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