Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 927 Bytes

File metadata and controls

30 lines (21 loc) · 927 Bytes

YaraString

Properties

Name Type Description Notes
identifier str
instances List[YaraStringInstance] [optional]

Example

from mandolin_python_client.models.yara_string import YaraString

# TODO update the JSON string below
json = "{}"
# create an instance of YaraString from a JSON string
yara_string_instance = YaraString.from_json(json)
# print the JSON string representation of the object
print(YaraString.to_json())

# convert the object into a dict
yara_string_dict = yara_string_instance.to_dict()
# create an instance of YaraString from a dict
yara_string_from_dict = YaraString.from_dict(yara_string_dict)

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