First working version
This commit is contained in:
16
headscale_api_client/schemas/v1User.py
Normal file
16
headscale_api_client/schemas/v1User.py
Normal file
@ -0,0 +1,16 @@
|
||||
from typing import *
|
||||
|
||||
from pydantic import BaseModel, Field
|
||||
|
||||
|
||||
class v1User(BaseModel):
|
||||
"""
|
||||
None model
|
||||
|
||||
"""
|
||||
|
||||
id: Optional[str] = Field(alias="id", default=None)
|
||||
|
||||
name: Optional[str] = Field(alias="name", default=None)
|
||||
|
||||
createdAt: Optional[str] = Field(alias="createdAt", default=None)
|
Reference in New Issue
Block a user