Source code for autumn.models.features
from typing import Dict, List, Literal, Optional
from pydantic import BaseModel
from .customers import CustomerFeature, CustomerInvoice, CustomerProduct
from .products import Product
__all__ = ("Feature", "FeaturePreview", "Entity")
[docs]
class Feature(BaseModel):
feature_id: str
quantity: int
[docs]
class FeaturePreview(BaseModel):
title: str
message: str
scenario: Literal["usage_limit", "feature_flag"]
feature_id: str
feature_name: str
upgrade_product_id: str
products: List[Product]
class Entity(BaseModel):
id: str
name: str
customer_id: str
created_at: int
env: str
products: List[CustomerProduct]
features: Dict[str, CustomerFeature]
invoices: Optional[List[CustomerInvoice]] = None