Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

CreateUnknownDataType

Properties

Name Type Description Notes
kind str
name str Type name. Unique within the analysis for a given namespace and kind.
namespace str The scope qualifying the type name. Omit for a type of the binary's own. [optional]
size int Size in bytes. Omit when it is not known. [optional]

Example

from revengai.models.create_unknown_data_type import CreateUnknownDataType

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

# convert the object into a dict
create_unknown_data_type_dict = create_unknown_data_type_instance.to_dict()
# create an instance of CreateUnknownDataType from a dict
create_unknown_data_type_from_dict = CreateUnknownDataType.from_dict(create_unknown_data_type_dict)

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