Show / Hide Table of Contents

Class SubscriptionAcknowledgmentConfiguration

The configuration for subscription acknowledgment.

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

Properties

AcknowledgedBy

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

The OCID of the principal that ackwnoledged the subscription.

IsAcknowledged

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

Flag to determine whether the subscription was acknowledged or not.

Remarks

Required

TimeAcknowledged

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

The date and time the subscription was acknowledged (formatted according to RFC3339).

In this article
Back to top