mitel_ommclient2/mitel_ommclient2/messages/getppuser.py

19 lines
286 B
Python

#!/usr/bin/env python3
from . import Request, Response, request_type, response_type
@request_type
class GetPPUser(Request):
FIELDS = {
"uid": int,
"maxRecords": int,
}
@response_type
class GetPPUserResp(Response):
CHILDS = {
"user": None,
}