Show / Hide Table of Contents

Class RecognitionMetadata

Description of audio data to be recognized.

Inheritance
System.Object
RecognitionMetadata
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.Speech.v1p1beta1.Data
Assembly: Google.Apis.Speech.v1p1beta1.dll
Syntax
public class RecognitionMetadata : IDirectResponseSchema

Properties

AudioTopic

Description of the content. Eg. "Recordings of federal supreme court hearings from 2012".

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

ETag

The ETag of the item.

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

IndustryNaicsCodeOfAudio

The industry vertical to which this speech recognition request most closely applies. This is most indicative of the topics contained in the audio. Use the 6-digit NAICS code to identify the industry vertical - see https://www.naics.com/search/.

Declaration
[JsonProperty("industryNaicsCodeOfAudio")]
public virtual long? IndustryNaicsCodeOfAudio { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

InteractionType

The use case most closely describing the audio content to be recognized.

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

MicrophoneDistance

The audio type that most closely describes the audio being recognized.

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

ObfuscatedId

Obfuscated (privacy-protected) ID of the user, to identify number of unique users using the service.

Declaration
[JsonProperty("obfuscatedId")]
public virtual long? ObfuscatedId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

OriginalMediaType

The original media the speech was recorded on.

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

OriginalMimeType

Mime type of the original audio file. For example audio/m4a, audio/x-alaw-basic, audio/mp3, audio/3gpp. A list of possible audio mime types is maintained at http://www.iana.org/assignments/media- types/media-types.xhtml#audio

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

RecordingDeviceName

The device used to make the recording. Examples 'Nexus 5X' or 'Polycom SoundStation IP 6000' or 'POTS' or 'VoIP' or 'Cardioid Microphone'.

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

RecordingDeviceType

The type of device the speech was recorded with.

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

Implements

IDirectResponseSchema
Back to top