mitel_ommclient2/mitel_ommclient2/messages/getppdev.py

19 lines
282 B
Python

#!/usr/bin/env python3
from . import Request, Response, request_type, response_type
@request_type
class GetPPDev(Request):
FIELDS = {
"ppn": int,
"maxRecords": int,
}
@response_type
class GetPPDevResp(Response):
CHILDS = {
"pp": None,
}