Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

CreateSEOScoreRequest.md

File metadata and controls

32 lines (23 loc) · 1.32 KB

CreateSEOScoreRequest

Properties

Name Type Description Notes
url str URL of the content to be analyzed. Mutually exclusive with text. [optional]
text str A paragraph of text content to be analyzed. Mutually exclusive with URL. [optional]
keyword str Keyword or query related to the content. [optional]
description_narrative str Narrative description of the intent behind the query. [optional]

Example

from wordlift_client.models.create_seo_score_request import CreateSEOScoreRequest

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

# convert the object into a dict
create_seo_score_request_dict = create_seo_score_request_instance.to_dict()
# create an instance of CreateSEOScoreRequest from a dict
create_seo_score_request_from_dict = CreateSEOScoreRequest.from_dict(create_seo_score_request_dict)

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