Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.22 KB

File metadata and controls

37 lines (28 loc) · 1.22 KB

XrefFromResponse

Properties

Name Type Description Notes
value str
is_scalar bool [optional]
is_call bool [optional]
is_data bool [optional]
is_string bool [optional]
raw_data str [optional]
segment SegmentInfo [optional]
orig_str_encoding str [optional]
xref_to str

Example

from revengai.models.xref_from_response import XrefFromResponse

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

# convert the object into a dict
xref_from_response_dict = xref_from_response_instance.to_dict()
# create an instance of XrefFromResponse from a dict
xref_from_response_from_dict = XrefFromResponse.from_dict(xref_from_response_dict)

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