997 B
997 B
ScanFlag
A risk flag raised by a scan.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| code | str | ||
| severity | AppDomainTokenModelsRiskLevel | ||
| message | str | ||
| evidence | Dict[str, object] | [optional] |
Example
from rugmunch.models.scan_flag import ScanFlag
# TODO update the JSON string below
json = "{}"
# create an instance of ScanFlag from a JSON string
scan_flag_instance = ScanFlag.from_json(json)
# print the JSON string representation of the object
print(ScanFlag.to_json())
# convert the object into a dict
scan_flag_dict = scan_flag_instance.to_dict()
# create an instance of ScanFlag from a dict
scan_flag_from_dict = ScanFlag.from_dict(scan_flag_dict)