Scalr\Api\Rest\Http\Response::setBody PHP Метод

setBody() публичный Метод

Sets response body
public setBody ( string $body ) : Response
$body string The response body
Результат Response
    public function setBody($body)
    {
        $this->body = $body;
        $this->contentLength = strlen($this->body);
        return $this;
    }