Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 958 Bytes

File metadata and controls

29 lines (20 loc) · 958 Bytes

PointerDefinition

Properties

Name Type Description Notes
pointee_data_type_id int The type pointed at. [optional]

Example

from revengai.models.pointer_definition import PointerDefinition

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

# convert the object into a dict
pointer_definition_dict = pointer_definition_instance.to_dict()
# create an instance of PointerDefinition from a dict
pointer_definition_from_dict = PointerDefinition.from_dict(pointer_definition_dict)

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