11 lines
139 B
Python
11 lines
139 B
Python
from typing import *
|
|
|
|
from pydantic import BaseModel, Field
|
|
|
|
|
|
class v1ExpirePreAuthKeyResponse(BaseModel):
|
|
"""
|
|
None model
|
|
|
|
"""
|