Show / Hide Table of Contents

Class DetectLanguageEntitiesRequest

Inheritance
object
DetectLanguageEntitiesRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AilanguageService.Requests
Assembly: OCI.DotNetSDK.Ailanguage.dll
Syntax
public class DetectLanguageEntitiesRequest : IOciRequest
Examples

Click here to see an example of how to use DetectLanguageEntities request.

Properties

DetectLanguageEntitiesDetails

Declaration
[Required(ErrorMessage = "DetectLanguageEntitiesDetails is required.")]
[HttpConverter(TargetEnum.Body)]
public DetectLanguageEntitiesDetails DetectLanguageEntitiesDetails { get; set; }
Property Value
Type Description
DetectLanguageEntitiesDetails

The details to make a Entity detect call.

Remarks

Required

IsPii

Declaration
[HttpConverter(TargetEnum.Query, "isPii")]
public bool? IsPii { get; set; }
Property Value
Type Description
bool?

If this parameter is set to true, you only get PII (Personally identifiable information) entities like PhoneNumber, Email, Person, and so on. Default value is false.

ModelVersion

Declaration
[HttpConverter(TargetEnum.Query, "modelVersion")]
public NerModelVersion? ModelVersion { get; set; }
Property Value
Type Description
NerModelVersion?

Named Entity Recognition model versions. By default user will get output from V2.1 implementation.

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

The client request ID for tracing.

Implements

IOciRequest
In this article
Back to top