Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.14 KB

File metadata and controls

30 lines (21 loc) · 1.14 KB

AnalysisStringsResponse

Properties

Name Type Description Notes
strings List[StringFunctions] The strings associated with the analysis
total_strings int The total number of strings associated with this analysis

Example

from revengai.models.analysis_strings_response import AnalysisStringsResponse

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

# convert the object into a dict
analysis_strings_response_dict = analysis_strings_response_instance.to_dict()
# create an instance of AnalysisStringsResponse from a dict
analysis_strings_response_from_dict = AnalysisStringsResponse.from_dict(analysis_strings_response_dict)

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