2024-02-24 17:03:55 -08:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-02-24 17:03:55 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SubscriptionTierFeature(BaseModel):
|
|
|
|
"""A subscription tier feature."""
|
|
|
|
|
|
|
|
info: str
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|