details = $details; } /** * @return GoogleRpcStatus */ public function getDetails() { return $this->details; } /** * Transformation result status type, this will be either SUCCESS, or it will * be the reason for why the transformation was not completely successful. * * Accepted values: STATE_TYPE_UNSPECIFIED, INVALID_TRANSFORM, * BIGQUERY_MAX_ROW_SIZE_EXCEEDED, METADATA_UNRETRIEVABLE, SUCCESS * * @param self::RESULT_STATUS_TYPE_* $resultStatusType */ public function setResultStatusType($resultStatusType) { $this->resultStatusType = $resultStatusType; } /** * @return self::RESULT_STATUS_TYPE_* */ public function getResultStatusType() { return $this->resultStatusType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GooglePrivacyDlpV2TransformationResultStatus::class, 'Google_Service_DLP_GooglePrivacyDlpV2TransformationResultStatus');