Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 937 Bytes

File metadata and controls

31 lines (22 loc) · 937 Bytes

GeoSerpImage

Properties

Name Type Description Notes
alt str [optional]
url str [optional]
image_url str [optional]

Example

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]