from pydantic import BaseModel


class PricingResponse(BaseModel):
    tierId: str
    name: str
    price: str
    period: str
    trialDays: int
    productId: str
    basePlanId: str
    maxImages: int | None = None
    maxVideos: int | None = None
