Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.12 KB

CreateSEOScore200Response.md

File metadata and controls

29 lines (20 loc) · 1.12 KB

CreateSEOScore200Response

Properties

Name Type Description Notes
analyze str Traffic light system indicating the match. M for match, T for trustworthiness, O for overall score. [optional]

Example

from wordlift_client.models.create_seo_score200_response import CreateSEOScore200Response

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

# convert the object into a dict
create_seo_score200_response_dict = create_seo_score200_response_instance.to_dict()
# create an instance of CreateSEOScore200Response from a dict
create_seo_score200_response_from_dict = CreateSEOScore200Response.from_dict(create_seo_score200_response_dict)

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