| 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 |
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)