Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.29 KB

File metadata and controls

36 lines (24 loc) · 1.29 KB

root / docs

[Back to README.md]

ContentAnalysisLanguagesResultInfo

Properties

Name Type Description Notes
language_name str language name [optional]
language_code str language code according to ISO 639-1 [optional]

Example

from dataforseo_client.models.content_analysis_languages_result_info import ContentAnalysisLanguagesResultInfo

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

# convert the object into a dict
content_analysis_languages_result_info_dict = content_analysis_languages_result_info_instance.to_dict()
# create an instance of ContentAnalysisLanguagesResultInfo from a dict
content_analysis_languages_result_info_form_dict = content_analysis_languages_result_info.from_dict(content_analysis_languages_result_info_dict)

root / docs

[Back to README.md]