field = $field; } /** * @return GooglePrivacyDlpV2FieldId */ public function getField() { return $this->field; } /** * The field transformation that was applied. If multiple field * transformations are requested for a single field, this list will contain * all of them; otherwise, only one is supplied. * * @param GooglePrivacyDlpV2FieldTransformation[] $fieldTransformations */ public function setFieldTransformations($fieldTransformations) { $this->fieldTransformations = $fieldTransformations; } /** * @return GooglePrivacyDlpV2FieldTransformation[] */ public function getFieldTransformations() { return $this->fieldTransformations; } /** * Set if the transformation was limited to a specific InfoType. * * @param GooglePrivacyDlpV2InfoType $infoType */ public function setInfoType(GooglePrivacyDlpV2InfoType $infoType) { $this->infoType = $infoType; } /** * @return GooglePrivacyDlpV2InfoType */ public function getInfoType() { return $this->infoType; } /** * The specific suppression option these stats apply to. * * @param GooglePrivacyDlpV2RecordSuppression $recordSuppress */ public function setRecordSuppress(GooglePrivacyDlpV2RecordSuppression $recordSuppress) { $this->recordSuppress = $recordSuppress; } /** * @return GooglePrivacyDlpV2RecordSuppression */ public function getRecordSuppress() { return $this->recordSuppress; } /** * Collection of all transformations that took place or had an error. * * @param GooglePrivacyDlpV2SummaryResult[] $results */ public function setResults($results) { $this->results = $results; } /** * @return GooglePrivacyDlpV2SummaryResult[] */ public function getResults() { return $this->results; } /** * The specific transformation these stats apply to. * * @param GooglePrivacyDlpV2PrimitiveTransformation $transformation */ public function setTransformation(GooglePrivacyDlpV2PrimitiveTransformation $transformation) { $this->transformation = $transformation; } /** * @return GooglePrivacyDlpV2PrimitiveTransformation */ public function getTransformation() { return $this->transformation; } /** * Total size in bytes that were transformed in some way. * * @param string $transformedBytes */ public function setTransformedBytes($transformedBytes) { $this->transformedBytes = $transformedBytes; } /** * @return string */ public function getTransformedBytes() { return $this->transformedBytes; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GooglePrivacyDlpV2TransformationSummary::class, 'Google_Service_DLP_GooglePrivacyDlpV2TransformationSummary');