AML alert information
| Name | Type | Description | Notes |
|---|---|---|---|
| alert_level | AlertLevelEnum | ||
| alert_name | str | Name or type of the alert | [optional] |
| category | str | Alert category | [optional] |
| service | str | Service that generated the alert | [optional] |
| external_id | str | External identifier for the alert | |
| alert_amount | float | Amount associated with the alert | |
| exposure_type | AlertExposureTypeEnum | ||
| policy_action | str | Recommended action based on policy | [optional] |
| category_id | float | Category identifier | [optional] |
from fireblocks.models.aml_alert import AmlAlert
# TODO update the JSON string below
json = "{}"
# create an instance of AmlAlert from a JSON string
aml_alert_instance = AmlAlert.from_json(json)
# print the JSON string representation of the object
print(AmlAlert.to_json())
# convert the object into a dict
aml_alert_dict = aml_alert_instance.to_dict()
# create an instance of AmlAlert from a dict
aml_alert_from_dict = AmlAlert.from_dict(aml_alert_dict)