Source code for kittycad.models.email_authentication_form
from typing import Optional
from pydantic import BaseModel, ConfigDict
[docs]
class EmailAuthenticationForm(BaseModel):
"""The body of the form for email authentication."""
callback_url: Optional[str] = None
email: str
model_config = ConfigDict(protected_namespaces=())