Show / Hide Table of Contents

Class AnnouncementsCollection

A list of announcements that match filter criteria, if any. Results contain both the announcements and the user-specific status of the announcements.

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

Properties

Items

Declaration
[JsonProperty(PropertyName = "items")]
public List<AnnouncementSummary> Items { get; set; }
Property Value
Type Description
List<AnnouncementSummary>

A collection of announcements.

UserStatuses

Declaration
[JsonProperty(PropertyName = "userStatuses")]
public List<AnnouncementUserStatusDetails> UserStatuses { get; set; }
Property Value
Type Description
List<AnnouncementUserStatusDetails>

The user-specific status for found announcements.

In this article
Back to top