Show / Hide Table of Contents

Class PutMessage

A message that has been published to a queue.

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

Properties

ExpireAfter

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

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

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.

Remarks

Required

In this article
Back to top