File size: 190 Bytes
ee3c704
 
 
 
 
 
95608ed
 
1
2
3
4
5
6
7
8
from typing import List, Union
from pydantic import BaseModel

class CoordinatesPayload(BaseModel):
    coords: Union[str, List[List[float]]]
    state: str
    duration: int
    delay : int