| Name |
Type |
Description |
Notes |
| title |
str |
|
[optional] |
| url |
str |
|
[optional] |
| domain |
str |
|
[optional] |
| snippet |
str |
|
[optional] |
| is_target |
bool |
|
[optional] |
from unifapi.models.geo_serp_link import GeoSerpLink
# TODO update the JSON string below
json = "{}"
# create an instance of GeoSerpLink from a JSON string
geo_serp_link_instance = GeoSerpLink.from_json(json)
# print the JSON string representation of the object
print(GeoSerpLink.to_json())
# convert the object into a dict
geo_serp_link_dict = geo_serp_link_instance.to_dict()
# create an instance of GeoSerpLink from a dict
geo_serp_link_from_dict = GeoSerpLink.from_dict(geo_serp_link_dict)
[Back to Model list] [Back to API list] [Back to README]