Show / Hide Table of Contents

Class PiiEntityMasking

Mask recognized PII entities with different modes.

Inheritance
object
PiiEntityMasking
PiiEntityMask
PiiEntityRemove
PiiEntityReplace
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Models
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
[JsonConverter(typeof(PiiEntityMaskingModelConverter))]
public class PiiEntityMasking

Properties

Exclude

Declaration
[JsonProperty(PropertyName = "exclude")]
public List<string> Exclude { get; set; }
Property Value
Type Description
List<string>

List of offsets/entities to be removed from anonymization.

ShouldDetect

Declaration
[JsonProperty(PropertyName = "shouldDetect")]
public bool? ShouldDetect { get; set; }
Property Value
Type Description
bool?

To include excluded entities from masking in detected entities or not.

In this article
Back to top