Show / Hide Table of Contents

Class Entity

Entity Object Reference

Inheritance
object
Entity
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 Entity

Properties

EntityValue

Declaration
[Required(ErrorMessage = "EntityValue is required.")]
[JsonProperty(PropertyName = "entityValue")]
public string EntityValue { get; set; }
Property Value
Type Description
string

Entity value

Remarks

Required

Pronunciations

Declaration
[JsonProperty(PropertyName = "pronunciations")]
public List<Pronunciation> Pronunciations { get; set; }
Property Value
Type Description
List<Pronunciation>

List of pronunciations (minimum 1, maximum 255)

Weight

Declaration
[JsonProperty(PropertyName = "weight")]
public float? Weight { get; set; }
Property Value
Type Description
float?

Entity weight

In this article
Back to top