Response for listing all the strings of a function.
| 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 |
fromrevengai.models.function_strings_responseimportFunctionStringsResponse# TODO update the JSON string belowjson="{}"# create an instance of FunctionStringsResponse from a JSON stringfunction_strings_response_instance=FunctionStringsResponse.from_json(json)
# print the JSON string representation of the objectprint(FunctionStringsResponse.to_json())
# convert the object into a dictfunction_strings_response_dict=function_strings_response_instance.to_dict()
# create an instance of FunctionStringsResponse from a dictfunction_strings_response_from_dict=FunctionStringsResponse.from_dict(function_strings_response_dict)