Show / Hide Table of Contents

Class UpdateMessageDetails

Updates the visibility of a message

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

Properties

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