12 lines
196 B
Python
12 lines
196 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class PaymentIntent(BaseModel):
|
|
"""A payment intent response."""
|
|
|
|
client_secret: str
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|