"Representation", "uncompressedLength" => "UncompressedLength", ]; /** * @var string */ public $representation; /** * @var int */ public $uncompressedLength; /** * @param string */ public function setRepresentation($representation) { $this->representation = $representation; } /** * @return string */ public function getRepresentation() { return $this->representation; } /** * @param int */ public function setUncompressedLength($uncompressedLength) { $this->uncompressedLength = $uncompressedLength; } /** * @return int */ public function getUncompressedLength() { return $this->uncompressedLength; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GDocumentBaseOriginalContent::class, 'Google_Service_Contentwarehouse_GDocumentBaseOriginalContent');