Scalr\Api\Rest\Http\Response::setBody PHP Method

setBody() public method

Sets response body
public setBody ( string $body ) : Response
$body string The response body
return Response
    public function setBody($body)
    {
        $this->body = $body;
        $this->contentLength = strlen($this->body);
        return $this;
    }