Show / Hide Table of Contents

Class FilterGroupDetails

The details of a group of filters to match announcements against. A filter group combines one or more individual filters.

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

Properties

Filters

Declaration
[Required(ErrorMessage = "Filters is required.")]
[JsonProperty(PropertyName = "filters")]
public List<Filter> Filters { get; set; }
Property Value
Type Description
List<Filter>

A list of filters against which the Announcements service matches announcements. You cannot combine the RESOURCE_ID filter with any other type of filter within a given filter group. For filter types that support multiple values, specify the values individually.

Remarks

Required

In this article
Back to top