From 80eec844bfed771a784a881ced6a26201e524cca Mon Sep 17 00:00:00 2001 From: clerie Date: Sun, 1 May 2022 23:57:37 +0200 Subject: [PATCH] Update readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 451930a..03c8855 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,9 @@ c = mitel_ommclient2.OMMClient2("omm.local", "admin", "admin") c.ping() # Create custom messages -r = c.connection.request(mitel_ommclient2.messages.Ping(timeStamp=2342)) +m = mitel_ommclient2.messages.Ping() +m.timeStamp = 2342 +r = c.connection.request(m) ``` Consult class documentation for more in depth examples and options.