mitel_ommclient2/mitel_ommclient2/messages/createppuser.py
2022-06-16 21:29:21 +02:00

18 lines
310 B
Python

#!/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,
}