Show / Hide Table of Contents

Class DeleteMessagesDetails

The details of a DeleteMessages request.

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

Properties

Entries

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

The array of messages to delete from a queue.

Remarks

Required

In this article
Back to top