Show / Hide Table of Contents

Class PutMessagesDetailsEntry

Object that represents a message to emit to a stream.

Inheritance
object
PutMessagesDetailsEntry
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StreamingService.Models
Assembly: OCI.DotNetSDK.Streaming.dll
Syntax
public class PutMessagesDetailsEntry

Properties

Key

Declaration
[JsonProperty(PropertyName = "key")]
public byte[] Key { get; set; }
Property Value
Type Description
byte[]

The key of the message, expressed as a byte array up to 256 bytes in size. Messages with the same key are stored in the same partition.

Value

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

The message, expressed as a byte array up to 1 MiB in size.

Remarks

Required

In this article
Back to top