Spaces:
Sleeping
Sleeping
| from pydantic import BaseModel, Field | |
| class UpdatePaymentStatusRequest(BaseModel): | |
| status: bool = Field(..., description="payment status") | |
| id: int = Field(..., description="payment id") | |