15 lines
261 B
Python
15 lines
261 B
Python
from typing import *
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
from .v1PreAuthKey import v1PreAuthKey
|
|
|
|
|
|
class v1CreatePreAuthKeyResponse(BaseModel):
|
|
"""
|
|
None model
|
|
|
|
"""
|
|
|
|
preAuthKey: Optional[v1PreAuthKey] = Field(alias="preAuthKey", default=None)
|