Spaces:
Sleeping
Sleeping
File size: 196 Bytes
2c15cb4 | 1 2 3 4 5 6 7 | from pydantic import BaseModel, Field
class UpdatePaymentStatusRequest(BaseModel):
status: bool = Field(..., description="payment status")
id: int = Field(..., description="payment id")
|