Show / Hide Table of Contents

Class AnnouncementUserStatusDetails

An announcement's status regarding whether it has been acknowledged by a user.

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

Properties

TimeAcknowledged

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

The date and time the announcement was acknowledged, expressed in RFC 3339 timestamp format. Example: 2019-01-01T17:43:01.389+0000

UserId

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

The OCID of the user that this status is associated with.

Remarks

Required

UserStatusAnnouncementId

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

The OCID of the announcement that this status is associated with.

Remarks

Required

In this article
Back to top