boolValue = $boolValue; } /** * @return bool */ public function getBoolValue() { return $this->boolValue; } /** * Required. A JSON Path (RFC 9535) to the argument being streamed. * https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". * * @param string $jsonPath */ public function setJsonPath($jsonPath) { $this->jsonPath = $jsonPath; } /** * @return string */ public function getJsonPath() { return $this->jsonPath; } /** * Optional. Represents a null value. * * Accepted values: NULL_VALUE * * @param self::NULL_VALUE_* $nullValue */ public function setNullValue($nullValue) { $this->nullValue = $nullValue; } /** * @return self::NULL_VALUE_* */ public function getNullValue() { return $this->nullValue; } public function setNumberValue($numberValue) { $this->numberValue = $numberValue; } public function getNumberValue() { return $this->numberValue; } /** * Optional. Represents a string value. * * @param string $stringValue */ public function setStringValue($stringValue) { $this->stringValue = $stringValue; } /** * @return string */ public function getStringValue() { return $this->stringValue; } /** * Optional. Whether this is not the last part of the same json_path. If true, * another PartialArg message for the current json_path is expected to follow. * * @param bool $willContinue */ public function setWillContinue($willContinue) { $this->willContinue = $willContinue; } /** * @return bool */ public function getWillContinue() { return $this->willContinue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1PartialArg::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1PartialArg');