Show / Hide Table of Contents

Class PutMessagesDetails

Object that represents an array of messages to emit to a stream.

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

Properties

Messages

Declaration
[Required(ErrorMessage = "Messages is required.")]
[JsonProperty(PropertyName = "messages")]
public List<PutMessagesDetailsEntry> Messages { get; set; }
Property Value
Type Description
List<PutMessagesDetailsEntry>

The array of messages to put into a stream.

Remarks

Required

In this article
Back to top