classifierVersion = $classifierVersion; } /** * @return self::CLASSIFIER_VERSION_* */ public function getClassifierVersion() { return $this->classifierVersion; } /** * Optional. Context about the input that will be used to help on the * classification. * * @param GoogleChecksAisafetyV1alphaClassifyContentRequestContext $context */ public function setContext(GoogleChecksAisafetyV1alphaClassifyContentRequestContext $context) { $this->context = $context; } /** * @return GoogleChecksAisafetyV1alphaClassifyContentRequestContext */ public function getContext() { return $this->context; } /** * Required. Content to be classified. * * @param GoogleChecksAisafetyV1alphaClassifyContentRequestInputContent $input */ public function setInput(GoogleChecksAisafetyV1alphaClassifyContentRequestInputContent $input) { $this->input = $input; } /** * @return GoogleChecksAisafetyV1alphaClassifyContentRequestInputContent */ public function getInput() { return $this->input; } /** * Required. List of policies to classify against. * * @param GoogleChecksAisafetyV1alphaClassifyContentRequestPolicyConfig[] $policies */ public function setPolicies($policies) { $this->policies = $policies; } /** * @return GoogleChecksAisafetyV1alphaClassifyContentRequestPolicyConfig[] */ public function getPolicies() { return $this->policies; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleChecksAisafetyV1alphaClassifyContentRequest::class, 'Google_Service_ChecksService_GoogleChecksAisafetyV1alphaClassifyContentRequest');