Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.52 KB

File metadata and controls

43 lines (34 loc) · 1.52 KB

GeoSerpSection

Properties

Name Type Description Notes
type str
title str [optional]
text str [optional]
markdown str [optional]
url str [optional]
domain str [optional]
source str [optional]
snippet str [optional]
references List[GeoSerpReference] [optional]
links List[GeoSerpLink] [optional]
images List[GeoSerpImage] [optional]
table object [optional]
nested_items List[object] [optional]
is_target bool [optional]
extras Dict[str, object] [optional]

Example

from unifapi.models.geo_serp_section import GeoSerpSection

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

# convert the object into a dict
geo_serp_section_dict = geo_serp_section_instance.to_dict()
# create an instance of GeoSerpSection from a dict
geo_serp_section_from_dict = GeoSerpSection.from_dict(geo_serp_section_dict)

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