Google\Spreadsheet\CellEntry::__construct PHP Method

__construct() public method

Constructor
public __construct ( SimpleXMLElement $xml, string $postUrl )
$xml SimpleXMLElement
$postUrl string
    public function __construct($xml, $postUrl)
    {
        $this->xml = $xml;
        $this->postUrl = $postUrl;
        $this->setCellLocation();
        $this->content = $xml->content->__toString();
        $this->inputValue = Util::extractAttributeFromXml($xml, "gs", "inputValue");
    }