| Url | String | The Url that needs to be invoked |
| Method | String | Optional, the method of the invocation (like GET, POST), default = GET |
| Username | String | Optional, the username used for basic authentication |
| Password | String | Optional, the password used for basic authentication |
| ConnectTimeout | String | Optional, the connect timeout of the connection, default = 60000 (60 seconds) |
| ReadTimeout | String | Optional, the read timeout of the connection, default = 60000 (60 seconds) |
| Result | String | The result returned by the REST service |
| Status | String | If the service returned an error response, this will contain the error response code |
| StatusMsg | String | If the service returned an error response, this will contain the error response message |
Username and password for basic authentication can be passed at construction time: RESTWorkItemHandler(String username, String password).