1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-03-21 01:44:38 -07:00

15 lines
325 B
Python

"""hyperglass-agent certificate import models."""
# Standard Library
from typing import Union
# Third Party
from pydantic import BaseModel, StrictStr
# Project
from hyperglass.configuration.models._utils import StrictBytes
class EncodedRequest(BaseModel):
device: StrictStr
encoded: Union[StrictStr, StrictBytes]