Skip to content

Latest commit

History

History
34 lines (25 loc) · 1.38 KB

File metadata and controls

34 lines (25 loc) · 1.38 KB

UpdateUnionDataType

Properties

NameTypeDescriptionNotes
data_type_idintThe type to replace, as returned by the data types list for this analysis.
definitionUnionDefinition
kindstr
namestrType name. Unique within the analysis for a given namespace and kind.
namespacestrThe scope qualifying the type name. Omit for a type of the binary's own.[optional]
sizeintSize in bytes. Omit when it is not known.[optional]

Example

fromrevengai.models.update_union_data_typeimportUpdateUnionDataType# TODO update the JSON string belowjson="{}"# create an instance of UpdateUnionDataType from a JSON stringupdate_union_data_type_instance=UpdateUnionDataType.from_json(json)
# print the JSON string representation of the objectprint(UpdateUnionDataType.to_json())
# convert the object into a dictupdate_union_data_type_dict=update_union_data_type_instance.to_dict()
# create an instance of UpdateUnionDataType from a dictupdate_union_data_type_from_dict=UpdateUnionDataType.from_dict(update_union_data_type_dict)

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