2022-05-12 10:12:47 +00:00
|
|
|
"""Models for the Geocaching integration."""
|
2024-03-08 13:52:48 +00:00
|
|
|
|
2022-05-12 10:12:47 +00:00
|
|
|
from typing import TypedDict
|
|
|
|
|
|
|
|
|
|
|
|
class GeocachingOAuthApiUrls(TypedDict):
|
|
|
|
"""oAuth2 urls for a single environment."""
|
|
|
|
|
|
|
|
authorize_url: str
|
|
|
|
token_url: str
|