Table of Contents

Class AnonymizeResponse

Namespace
FoundationaLLM.Gatekeeper.Core.Models.Integration
Assembly
FoundationaLLM.Gatekeeper.Core.dll

Encapsulates a text anonymize response.

public class AnonymizeResponse
Inheritance
AnonymizeResponse
Inherited Members
Extension Methods

Properties

Content

The text that was analyzed.

[JsonPropertyName("content")]
public required string Content { get; set; }

Property Value

string

Results

A list of anonymized PII (personally identifiable information) entities identified in the analyzed text.

[JsonPropertyName("results")]
public required List<PIIResultAnonymized> Results { get; set; }

Property Value

List<PIIResultAnonymized>