Show / Hide Table of Contents

Class ProfanityTranscriptionFilter

Profanity transcription filter to recognize profane words.

Inheritance
object
TranscriptionFilter
ProfanityTranscriptionFilter
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AispeechService.Models
Assembly: OCI.DotNetSDK.Aispeech.dll
Syntax
public class ProfanityTranscriptionFilter : TranscriptionFilter

Properties

Mode

Declaration
[Required(ErrorMessage = "Mode is required.")]
[JsonProperty(PropertyName = "mode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ProfanityTranscriptionFilter.ModeEnum? Mode { get; set; }
Property Value
Type Description
ProfanityTranscriptionFilter.ModeEnum?
  • MASK: Will mask detected profanity in transcription.
  • REMOVE: Will replace profane word with * in transcription.
  • TAG: Will tag profane word as profanity but will show actual word.
Remarks

Required

In this article
Back to top