File: ac_error_information.py

package info (click to toggle)
python-airtouch5py 0.2.10-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,052 kB
  • sloc: python: 1,748; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 395 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from airtouch5py.packets.datapacket import Data


class AcErrorInformationRequestData(Data):
    ac_number: int

    def __init__(self, ac_number: int):
        self.ac_number = ac_number


class AcErrorInformationData(Data):
    ac_number: int
    error_info: str

    def __init__(self, ac_number: int, error_info: str):
        self.ac_number = ac_number
        self.error_info = error_info