Show / Hide Table of Contents

Class CreateFilterGroupDetails

The details for creating a new filter group for an announcement subscription.

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

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 will match announcements. You cannot have more than one of any given filter type within a filter group.

Remarks

Required

Name

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

The name of the filter group. The name must be unique and it cannot be changed. Avoid entering confidential information.

Remarks

Required

In this article
Back to top