from pydantic import BaseModel, Field


class VerifyPurchaseRequest(BaseModel):
    purchaseToken: str = Field(..., min_length=1)
    productId: str = Field(..., min_length=1)


class VerifyPurchaseResponse(BaseModel):
    token: str
    isPremium: bool
    status: str
    productId: str
    orderId: str
    expiryDate: str
