Show / Hide Table of Contents

Class UpdateMessagesDetailsEntry

Object that represents a message to update in a queue.

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

Properties

Receipt

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

The receipt of the message to update.

Remarks

Required

VisibilityInSeconds

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

The new visibility of the message relative to the current time (as-per the clock of the server receiving the request).

Remarks

Required

In this article
Back to top