|
- # coding: utf-8
-
- from __future__ import absolute_import
- from datetime import date, datetime
-
- from typing import List, Dict
-
- #from ..core import util
-
- from pydantic import BaseModel, Field
-
- class cellularHardware(BaseModel):
- """Model containing hardware info for a single device.
- """
- id: str
- description: str= Field(None, example="SIM Box 3301A")
- status: str= Field(None, example="Free", description="The status of the hardware.")
- signal_level: int= Field(None, example="9", description="The detected signal level of the network.")
- registered_number: str= Field(None, description="The number associated with the SIM card used by the hardware.")
- operator: str= Field(None)
|