Show / Hide Table of Contents

Class DetectionsResourceItems

An array of languages which we detect for the given text The most likely language list first.

Inheritance
System.Object
DetectionsResourceItems
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Translate.v2.Data
Assembly: Google.Apis.Translate.v2.dll
Syntax
public class DetectionsResourceItems : IDirectResponseSchema

Properties

Confidence

The confidence of the detection result of this language.

Declaration
[JsonProperty("confidence")]
public virtual float? Confidence { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IsReliable

A boolean to indicate is the language detection result reliable.

Declaration
[JsonProperty("isReliable")]
public virtual bool? IsReliable { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Language

The language we detected.

Declaration
[JsonProperty("language")]
public virtual string Language { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top