Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

IndirectCallSitesOutputBody

Properties

Name Type Description Notes
function_id int
sites List[IndirectCallSite]

Example

from revengai.models.indirect_call_sites_output_body import IndirectCallSitesOutputBody

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

# convert the object into a dict
indirect_call_sites_output_body_dict = indirect_call_sites_output_body_instance.to_dict()
# create an instance of IndirectCallSitesOutputBody from a dict
indirect_call_sites_output_body_from_dict = IndirectCallSitesOutputBody.from_dict(indirect_call_sites_output_body_dict)

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