Show / Hide Table of Contents

Class UpdateMessagesResultEntry

Represents the result of a UpdateMessages request, whether it was successful or not. If a message was successfully updated in the queue, the entry includes the id and visibleAfter fields. If a message failed to be updated in the queue, the entry includes the errorCode and errorMessage fields.

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

Properties

ErrorCode

Declaration
[JsonProperty(PropertyName = "errorCode")]
public int? ErrorCode { get; set; }
Property Value
Type Description
int?

The error code, in case the message was not successfully updated in the queue.

ErrorMessage

Declaration
[JsonProperty(PropertyName = "errorMessage")]
public string ErrorMessage { get; set; }
Property Value
Type Description
string

A human-readable error message associated with the error code.

Id

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

The ID of the message that's been updated.

VisibleAfter

Declaration
[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

In this article
Back to top