Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1023 Bytes

File metadata and controls

33 lines (24 loc) · 1023 Bytes

YaraMatch

Properties

Name Type Description Notes
rule str
tags List[str] [optional]
namespace str [optional]
meta Dict[str, object] [optional]
strings List[YaraString] [optional]

Example

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)

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