filter = $filter; } /** * @return string */ public function getFilter() { return $this->filter; } /** * Optional. Flag to indicate to actually perform the purge. If `force` is set * to false, the method will return a sample of Context names that would be * deleted. * * @param bool $force */ public function setForce($force) { $this->force = $force; } /** * @return bool */ public function getForce() { return $this->force; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1PurgeContextsRequest::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1PurgeContextsRequest');