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,14 @@
from typing import *
from pydantic import BaseModel, Field
from .v1PreAuthKey import v1PreAuthKey
class v1ListPreAuthKeysResponse(BaseModel):
"""
None model
"""
preAuthKeys: Optional[List[Optional[v1PreAuthKey]]] = Field(alias="preAuthKeys", default=None)