Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.68 KB

File metadata and controls

38 lines (29 loc) · 1.68 KB

UnionDataType

Properties

Name Type Description Notes
created_at datetime When this type was extracted.
data_type_id int Identifies the type within its analysis. 0 is a valid id.
definition UnionDefinition Absent only for a type referenced but never defined. [optional]
has_definition bool Whether this type carries a definition. False for the kinds that never have one and for a type referenced but never defined.
kind str
name str Type name.
namespace str The scope qualifying the type name. Empty for a program-defined type.
size int Size in bytes, absent when it could not be determined. [optional]
source_function_id int The function this type was copied from, when transferred rather than extracted. [optional]
source_type str Where this type came from.

Example

from revengai.models.union_data_type import UnionDataType

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

# convert the object into a dict
union_data_type_dict = union_data_type_instance.to_dict()
# create an instance of UnionDataType from a dict
union_data_type_from_dict = UnionDataType.from_dict(union_data_type_dict)

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