mitel_ommclient2/mitel_ommclient2/messages/createppuser.py

19 lines
310 B
Python
Raw Normal View History

2022-06-16 21:29:21 +02:00
#!/usr/bin/env python3
from . import Request, Response, request_type, response_type
from ..types import PPUserType
@request_type
class CreatePPUser(Request):
CHILDS = {
"user": PPUserType,
}
@response_type
class CreatePPUserResp(Response):
CHILDS = {
"user": PPUserType,
}