id = $id; } /** * @return string */ public function getId() { return $this->id; } /** * The kind of the entity. A kind matching regex `__.*__` is reserved/read- * only. A kind must not contain more than 1500 bytes when UTF-8 encoded. * Cannot be `""`. Must be valid UTF-8 bytes. Legacy values that are not valid * UTF-8 are encoded as `__bytes__` where `` is the base-64 encoding of the * bytes. * * @param string $kind */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * The name of the entity. A name matching regex `__.*__` is reserved/read- * only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be * `""`. Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are * encoded as `__bytes__` where `` is the base-64 encoding of the bytes. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PathElement::class, 'Google_Service_Datastore_PathElement');