| Name |
Type |
Description |
Notes |
| alt |
str |
|
[optional] |
| url |
str |
|
[optional] |
| image_url |
str |
|
[optional] |
from unifapi.models.geo_serp_image import GeoSerpImage
# TODO update the JSON string below
json = "{}"
# create an instance of GeoSerpImage from a JSON string
geo_serp_image_instance = GeoSerpImage.from_json(json)
# print the JSON string representation of the object
print(GeoSerpImage.to_json())
# convert the object into a dict
geo_serp_image_dict = geo_serp_image_instance.to_dict()
# create an instance of GeoSerpImage from a dict
geo_serp_image_from_dict = GeoSerpImage.from_dict(geo_serp_image_dict)
[Back to Model list] [Back to API list] [Back to README]