| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | ||
| domain | str | [optional] | |
| present | bool | ||
| best_rank | int | [optional] | |
| matches | List[SeoSerpResultRef] |
from unifapi.models.seo_serp_target import SeoSerpTarget
# TODO update the JSON string below
json = "{}"
# create an instance of SeoSerpTarget from a JSON string
seo_serp_target_instance = SeoSerpTarget.from_json(json)
# print the JSON string representation of the object
print(SeoSerpTarget.to_json())
# convert the object into a dict
seo_serp_target_dict = seo_serp_target_instance.to_dict()
# create an instance of SeoSerpTarget from a dict
seo_serp_target_from_dict = SeoSerpTarget.from_dict(seo_serp_target_dict)