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

NameTypeDescriptionNotes
stringsList[FunctionString]The strings associated with this function
total_stringsintThe total number of strings associated with this function

Example

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)

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