public function calculate()
{
$this->token = $this->authorize($this->getToken());
$response = $this->requestApi($this->url,[
'method' => 'calculation',
'procedure' => 'vzr.traveler',
'token' => $this->token,
'data' => $this->prepareCalculationRequestData()
]);
//$response = $this->prepareCalculationRequestData();
return $response;
}