* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
18 lines
485 B
Python
18 lines
485 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.modeling_app_individual_subscription_tier import (
|
|
ModelingAppIndividualSubscriptionTier,
|
|
)
|
|
|
|
|
|
class ZooProductSubscriptionsUserRequest(BaseModel):
|
|
"""A struct of Zoo product subscriptions a user can request."""
|
|
|
|
modeling_app: ModelingAppIndividualSubscriptionTier = "free" # type: ignore
|
|
|
|
pay_annually: Optional[bool] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|