| Name | Type | Description | Notes |
|---|---|---|---|
| value | str | ||
| domain | str | [optional] | |
| present | bool | ||
| best_rank | int | [optional] | |
| matches | List[GeoSerpResultRef] | ||
| citations | List[GeoSerpCitation] |
from unifapi.models.geo_serp_target import GeoSerpTarget
# TODO update the JSON string below
json = "{}"
# create an instance of GeoSerpTarget from a JSON string
geo_serp_target_instance = GeoSerpTarget.from_json(json)
# print the JSON string representation of the object
print(GeoSerpTarget.to_json())
# convert the object into a dict
geo_serp_target_dict = geo_serp_target_instance.to_dict()
# create an instance of GeoSerpTarget from a dict
geo_serp_target_from_dict = GeoSerpTarget.from_dict(geo_serp_target_dict)