First working version

This commit is contained in:
2024-06-27 16:31:55 +02:00
parent df5754518d
commit 737716f8eb
57 changed files with 1508 additions and 0 deletions

View File

@ -0,0 +1,12 @@
from typing import *
from pydantic import BaseModel, Field
class v1CreateApiKeyResponse(BaseModel):
"""
None model
"""
apiKey: Optional[str] = Field(alias="apiKey", default=None)