mitel_ommclient2/mitel_ommclient2/messages/ping.py

18 lines
259 B
Python

#!/usr/bin/env python3
from . import Request, Response, request_type, response_type
@request_type
class Ping(Request):
FIELDS = {
"timeStamp": int,
}
@response_type
class PingResp(Response):
FIELDS = {
"timeStamp": int,
}