Files
immich-to-cloud-exporter/generated/immich/openapi_client/docs/MapReverseGeocodeResponseDto.md

1.1 KiB

MapReverseGeocodeResponseDto

Properties

Name Type Description Notes
city str
country str
state str

Example

from generated.immich.openapi_client.models.map_reverse_geocode_response_dto import MapReverseGeocodeResponseDto

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

# convert the object into a dict
map_reverse_geocode_response_dto_dict = map_reverse_geocode_response_dto_instance.to_dict()
# create an instance of MapReverseGeocodeResponseDto from a dict
map_reverse_geocode_response_dto_from_dict = MapReverseGeocodeResponseDto.from_dict(map_reverse_geocode_response_dto_dict)

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