Show / Hide Table of Contents

Class PutMessagesDetails

The details of a PutMessages request.

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.QueueService.Models
Assembly: OCI.DotNetSDK.Queue.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 queue.

Remarks

Required

In this article
Back to top