Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

File metadata and controls

33 lines (24 loc) · 1.29 KB

CreateStructDataType

Properties

Name Type Description Notes
definition StructDefinition
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_struct_data_type import CreateStructDataType

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

# convert the object into a dict
create_struct_data_type_dict = create_struct_data_type_instance.to_dict()
# create an instance of CreateStructDataType from a dict
create_struct_data_type_from_dict = CreateStructDataType.from_dict(create_struct_data_type_dict)

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