Show / Hide Table of Contents

Class RealtimeMessageAckAudioDetails

Details object for the websocket ack message received from service.

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

Properties

Length

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

Length in bytes of the acknowledged packet.

Remarks

Required

Number

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

Sequence number of the acknowledged packet.

Remarks

Required

Offset

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

Offset of the acknowledged packet.

Remarks

Required

In this article
Back to top