Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

File metadata and controls

29 lines (20 loc) · 1.09 KB

PutAnalysisStringsRequest

Properties

Name Type Description Notes
strings List[AnalysisStringInput] The strings to add to the analysis

Example

from revengai.models.put_analysis_strings_request import PutAnalysisStringsRequest

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

# convert the object into a dict
put_analysis_strings_request_dict = put_analysis_strings_request_instance.to_dict()
# create an instance of PutAnalysisStringsRequest from a dict
put_analysis_strings_request_from_dict = PutAnalysisStringsRequest.from_dict(put_analysis_strings_request_dict)

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