From 828ccc634e5f607c0efeb161bb5a8623b3b6353f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michal=20Ondreji=C4=8Dka?= <ondrejickam@infotech.sk>
Date: Mon, 30 Aug 2021 09:40:16 +0000
Subject: [PATCH] Update README.md

---
 README.md | 29 +++++++++++++++++------------
 1 file changed, 17 insertions(+), 12 deletions(-)

diff --git a/README.md b/README.md
index cbc20a4..4bfbbb1 100644
--- a/README.md
+++ b/README.md
@@ -16,21 +16,26 @@ Rest json/protobuf API for registered twinzo clients and partners provides fully
 ## Documentation & Examples (V3)
 
 ### Initialization
+The first thing you need to do is create the base object by which the functionality will be accessible:
 
-The first thing you need to do is create the base object by which the functionality is accessible:
-
+```Java 
 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();\
- 
-
-
+	.Url("https://twin.rtls.solutions/api")\
+	.Client("YourClient")\
+	.BranchGuid("YourBranchGuid")\
+	.Timeout(1000)\
+	.ApiKey("YourApiKey")\
+	.Version(ConnectionOptions.VERSION_3)\
+	.Build();\
+	
+DevkitConnectorV3 devkitConnector = (DevkitConnectorV3) DevkitFactory.CreateDevkitConnector(connectionOptions);
+```
+
+Through the `DevkitConnectorV3` object are accessible all the functions implemented in tDevkit.
+
+### List of functions
+TBA
 
 ## Future features
 - **protobuffers** serialization
-- 
GitLab