| 113 | } |
| 114 | |
| 115 | std::string Response::GetSessionId(void) { |
| 116 | if (this->error_.size() == 0) { |
| 117 | return this->value_.get("sessionId", "").asString(); |
| 118 | } |
| 119 | return ""; |
| 120 | } |
| 121 | |
| 122 | int Response::GetHttpResponseCode(void) { |
| 123 | int response_code = 200; |
no test coverage detected