Files
Hotel-Booking/Backend/venv/lib/python3.12/site-packages/stripe/_app_info.py
Iliyan Angelov 0c59fe1173 updates
2025-11-17 18:26:30 +02:00

10 lines
190 B
Python

from typing import Optional
from typing_extensions import TypedDict
class AppInfo(TypedDict):
name: str
partner_id: Optional[str]
url: Optional[str]
version: Optional[str]