11 lines
196 B
Python
11 lines
196 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class EMQXWebhook(BaseModel):
|
|
event: str
|
|
clientid: str
|
|
username: Optional[str] = None
|
|
timestamp: Optional[int] = None
|