Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.56 KB

File metadata and controls

34 lines (25 loc) · 1.56 KB

GeoMentionsTarget

Properties

Name Type Description Notes
domain str Target domain (no protocol/www). Provide domain or keyword. [optional]
keyword str Target keyword. Provide domain or keyword. [optional]
filter str Whether to include or exclude matches for this entity. Defaults to include. [optional]
scope List[str] Where to look. Domain scopes: any, sources, search_results. Keyword scopes: any, question, answer, brand_entities, fan_out_queries. [optional]
match str Keyword match type. word = full-term match; partial = substring. Defaults to word. [optional]
include_subdomains bool Include subdomains of the target domain. Defaults to false. [optional]

Example

from unifapi.models.geo_mentions_target import GeoMentionsTarget

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

# convert the object into a dict
geo_mentions_target_dict = geo_mentions_target_instance.to_dict()
# create an instance of GeoMentionsTarget from a dict
geo_mentions_target_from_dict = GeoMentionsTarget.from_dict(geo_mentions_target_dict)

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