/**
  * {@inheritdoc}
  */
 public function getUserByChipUUID($uuid)
 {
     $url = $this->getUrl(self::USER_BY_CHIP, ['chip' => $uuid]);
     $response = $this->prepareRequest(Http::GET, $url)->send();
     $data = $this->getSuccessData($response);
     return User::createFromStdClass($data);
 }