Show / Hide Table of Contents

Class UpdatedMessage

An updated message with the new visibility.

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

Properties

Id

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

The ID of the message that's been updated.

Remarks

Required

VisibleAfter

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

The time after which the message will be visible to other consumers, expressed in RFC 3339 timestamp format.
Example: 2018-04-20T00:00:07.405Z

Remarks

Required

In this article
Back to top