Package com.google.privacy.dlp.v2
Interface DeidentifyContentResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeidentifyContentResponse
,DeidentifyContentResponse.Builder
public interface DeidentifyContentResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContentItem
getItem()
The de-identified item.ContentItemOrBuilder
getItemOrBuilder()
The de-identified item.TransformationOverview
getOverview()
An overview of the changes that were made on the `item`.TransformationOverviewOrBuilder
getOverviewOrBuilder()
An overview of the changes that were made on the `item`.boolean
hasItem()
The de-identified item.boolean
hasOverview()
An overview of the changes that were made on the `item`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasItem
boolean hasItem()
The de-identified item.
.google.privacy.dlp.v2.ContentItem item = 1;
- Returns:
- Whether the item field is set.
-
getItem
ContentItem getItem()
The de-identified item.
.google.privacy.dlp.v2.ContentItem item = 1;
- Returns:
- The item.
-
getItemOrBuilder
ContentItemOrBuilder getItemOrBuilder()
The de-identified item.
.google.privacy.dlp.v2.ContentItem item = 1;
-
hasOverview
boolean hasOverview()
An overview of the changes that were made on the `item`.
.google.privacy.dlp.v2.TransformationOverview overview = 2;
- Returns:
- Whether the overview field is set.
-
getOverview
TransformationOverview getOverview()
An overview of the changes that were made on the `item`.
.google.privacy.dlp.v2.TransformationOverview overview = 2;
- Returns:
- The overview.
-
getOverviewOrBuilder
TransformationOverviewOrBuilder getOverviewOrBuilder()
An overview of the changes that were made on the `item`.
.google.privacy.dlp.v2.TransformationOverview overview = 2;
-
-