Source code for kittycad.models.email_authentication_form

from typing import Optional

from .base import KittyCadBaseModel


[docs] class EmailAuthenticationForm(KittyCadBaseModel): """The body of the form for email authentication.""" callback_url: Optional[str] = None email: str