mitel_ommclient2/mitel_ommclient2/messages/getppdev.py

19 lines
282 B
Python
Raw Normal View History

2022-01-16 13:52:08 +01:00
#!/usr/bin/env python3
from . import Request, Response, request_type, response_type
2022-01-16 13:52:08 +01:00
@request_type
2022-01-16 13:52:08 +01:00
class GetPPDev(Request):
FIELDS = {
"ppn": int,
"maxRecords": int,
}
2022-01-16 13:52:08 +01:00
@response_type
2022-01-16 13:52:08 +01:00
class GetPPDevResp(Response):
CHILDS = {
"pp": None,
}