mirror of
https://git.clerie.de/clerie/mitel_ommclient2.git
synced 2026-01-03 04:38:12 +00:00
18 lines
310 B
Python
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,
|
|
}
|