Files
Iliyan Angelov 0c59fe1173 updates
2025-11-17 18:26:30 +02:00

15 lines
256 B
Python

# -*- coding: utf-8 -*-
# NOT codegenned
from typing_extensions import TypedDict
from stripe._stripe_object import StripeObject
class Amount(StripeObject):
value: int
currency: str
class AmountParam(TypedDict):
value: int
currency: str