| Name | Type | Description | Notes |
|---|---|---|---|
| rule | str | ||
| tags | List[str] | [optional] | |
| namespace | str | [optional] | |
| meta | Dict[str, object] | [optional] | |
| strings | List[YaraString] | [optional] |
from mandolin_python_client.models.yara_match import YaraMatch
# TODO update the JSON string below
json = "{}"
# create an instance of YaraMatch from a JSON string
yara_match_instance = YaraMatch.from_json(json)
# print the JSON string representation of the object
print(YaraMatch.to_json())
# convert the object into a dict
yara_match_dict = yara_match_instance.to_dict()
# create an instance of YaraMatch from a dict
yara_match_from_dict = YaraMatch.from_dict(yara_match_dict)