From e3a35969a539fef7c4f523ac66510c9e96383550 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Ondreji=C4=8Dka?= <ondrejickam@infotech.sk> Date: Mon, 30 Aug 2021 09:28:04 +0000 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 7bd00f7..cbc20a4 100644 --- a/README.md +++ b/README.md @@ -20,16 +20,18 @@ Rest json/protobuf API for registered twinzo clients and partners provides fully The first thing you need to do is create the base object by which the functionality is accessible: ConnectionOptionsBuilder ConnectionOptionsBuilder = new ConnectionOptionsBuilder(); -ConnectionOptions connectionOptions = optionsBuilder - .Url("https://twin.rtls.solutions/api") - .Client("YourClient") - .BranchGuid("YourBranchGuid") - .Timeout(1000) - .ApiKey("YourApiKey") - .Version(ConnectionOptions.VERSION_3) - .Build(); +ConnectionOptions connectionOptions = optionsBuilder\ + .Url("https://twin.rtls.solutions/api")\ + .Client("YourClient")\ + .BranchGuid("YourBranchGuid")\ + .Timeout(1000)\ + .ApiKey("YourApiKey")\ + .Version(ConnectionOptions.VERSION_3)\ + .Build();\ -aw d + + + ## Future features - **protobuffers** serialization - automated order system(AOS) for logistics integration -- GitLab