mitel_ommclient2/mitel_ommclient2/messages/getpublickey.py

17 lines
260 B
Python

#!/usr/bin/env python3
from . import Request, Response, request_type, response_type
@request_type
class GetPublicKey(Request):
pass
@response_type
class GetPublicKeyResp(Response):
FIELDS = {
"modulus": str,
"exponent": str,
}