Show / Hide Table of Contents

Class RealtimeMessageError

The websocket error message received from service.

Inheritance
object
RealtimeMessage
RealtimeMessageError
Inherited Members
RealtimeMessage.SessionId
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 RealtimeMessageError : RealtimeMessage

Properties

Code

Declaration
[Required(ErrorMessage = "Code is required.")]
[JsonProperty(PropertyName = "code")]
public int? Code { get; set; }
Property Value
Type Description
int?

Error code.

Remarks

Required

Message

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

Error message.

Remarks

Required

In this article
Back to top