Files
kittycad.py/kittycad/models/ai_plugin_auth.py
Jess Frazelle bc3d698539 switch to pydantic
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-28 23:50:50 -08:00

15 lines
365 B
Python

from typing import Optional
from pydantic import BaseModel
from ..models.ai_plugin_auth_type import AiPluginAuthType
from ..models.ai_plugin_http_auth_type import AiPluginHttpAuthType
class AiPluginAuth(BaseModel):
"""AI plugin auth information."""
authorization_type: Optional[AiPluginHttpAuthType] = None
type: Optional[AiPluginAuthType] = None