Show / Hide Table of Contents

Class PutMessages

A list of the messages published to a queue.

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

Properties

Messages

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

The messages that have been published to a queue.

Remarks

Required

In this article
Back to top