com.google.api.services.contactcenterinsights.v1.model.GoogleCloudContactcenterinsightsV1RedactionConfig Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/
package com.google.api.services.contactcenterinsights.v1.model;
/**
* DLP resources used for redaction while ingesting conversations.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
* explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudContactcenterinsightsV1RedactionConfig extends com.google.api.client.json.GenericJson {
/**
* The fully-qualified DLP deidentify template resource name. Format:
* `projects/{project}/deidentifyTemplates/{template}`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String deidentifyTemplate;
/**
* The fully-qualified DLP inspect template resource name. Format:
* `projects/{project}/locations/{location}/inspectTemplates/{template}`
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String inspectTemplate;
/**
* The fully-qualified DLP deidentify template resource name. Format:
* `projects/{project}/deidentifyTemplates/{template}`
* @return value or {@code null} for none
*/
public java.lang.String getDeidentifyTemplate() {
return deidentifyTemplate;
}
/**
* The fully-qualified DLP deidentify template resource name. Format:
* `projects/{project}/deidentifyTemplates/{template}`
* @param deidentifyTemplate deidentifyTemplate or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1RedactionConfig setDeidentifyTemplate(java.lang.String deidentifyTemplate) {
this.deidentifyTemplate = deidentifyTemplate;
return this;
}
/**
* The fully-qualified DLP inspect template resource name. Format:
* `projects/{project}/locations/{location}/inspectTemplates/{template}`
* @return value or {@code null} for none
*/
public java.lang.String getInspectTemplate() {
return inspectTemplate;
}
/**
* The fully-qualified DLP inspect template resource name. Format:
* `projects/{project}/locations/{location}/inspectTemplates/{template}`
* @param inspectTemplate inspectTemplate or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1RedactionConfig setInspectTemplate(java.lang.String inspectTemplate) {
this.inspectTemplate = inspectTemplate;
return this;
}
@Override
public GoogleCloudContactcenterinsightsV1RedactionConfig set(String fieldName, Object value) {
return (GoogleCloudContactcenterinsightsV1RedactionConfig) super.set(fieldName, value);
}
@Override
public GoogleCloudContactcenterinsightsV1RedactionConfig clone() {
return (GoogleCloudContactcenterinsightsV1RedactionConfig) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy