Show / Hide Table of Contents

Class PublishResult

The response to a PublishMessage call.

Inheritance
object
PublishResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OnsService.Models
Assembly: OCI.DotNetSDK.Ons.dll
Syntax
public class PublishResult

Properties

MessageId

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

The UUID of the message.

Remarks

Required

TimeStamp

Declaration
[JsonProperty(PropertyName = "timeStamp")]
public DateTime? TimeStamp { get; set; }
Property Value
Type Description
DateTime?

The time that the service received the message.

In this article
Back to top