| Name | Type | Description | Notes |
|---|---|---|---|
| rank | int | [optional] | |
| group_rank | int | [optional] | |
| type | str | ||
| title | str | [optional] | |
| text | str | [optional] | |
| markdown | str | [optional] | |
| page | int | [optional] | |
| position | str | [optional] | |
| references | List[GeoSerpReference] | [optional] | |
| links | List[GeoSerpLink] | [optional] | |
| images | List[GeoSerpImage] | [optional] | |
| sections | List[GeoSerpSection] | [optional] | |
| is_billable | bool | True for top-level AI SERP result records that count toward billing. | |
| is_target | bool | [optional] | |
| extras | Dict[str, object] | [optional] |
from unifapi.models.geo_serp_result import GeoSerpResult
# TODO update the JSON string below
json = "{}"
# create an instance of GeoSerpResult from a JSON string
geo_serp_result_instance = GeoSerpResult.from_json(json)
# print the JSON string representation of the object
print(GeoSerpResult.to_json())
# convert the object into a dict
geo_serp_result_dict = geo_serp_result_instance.to_dict()
# create an instance of GeoSerpResult from a dict
geo_serp_result_from_dict = GeoSerpResult.from_dict(geo_serp_result_dict)