Serialization
Json - FromJson
Deserializes an object instance from Json string
IN
| Name | Type | Description |
|---|---|---|
| InJson | String | Input Json string |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutValue | < T > | The variable value |
| Error | ErrorState | Gets the execution error message |
Json - ToJson
Serializes an object instance to Json string
IN
| Name | Type | Description |
|---|---|---|
| InValue | < T > | The variable value |
| Name | String | Set the tool's name |
| Enable | Bool | Sets if current tool is enabled or not |
OUT
| Name | Type | Description |
|---|---|---|
| OutJson | String | The Json string. |
| Error | ErrorState | Gets the execution error message |