Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.19 KB

File metadata and controls

31 lines (22 loc) · 1.19 KB

FunctionStringsResponse

Response for listing all the strings of a function.

Properties

Name Type Description Notes
strings List[FunctionString] The strings associated with this function
total_strings int The total number of strings associated with this function

Example

from revengai.models.function_strings_response import FunctionStringsResponse

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

# convert the object into a dict
function_strings_response_dict = function_strings_response_instance.to_dict()
# create an instance of FunctionStringsResponse from a dict
function_strings_response_from_dict = FunctionStringsResponse.from_dict(function_strings_response_dict)

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