Show / Hide Table of Contents

Class ManualRuleGroup

A group name and a list of items from the source data that should be placed in the group with this name.

Inheritance
System.Object
ManualRuleGroup
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class ManualRuleGroup : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

GroupName

The group name, which must be a string. Each group in a given ManualRule must have a unique group name.

Declaration
public virtual ExtendedValue GroupName { get; set; }
Property Value
Type Description
ExtendedValue

Items

The items in the source data that should be placed into this group. Each item may be a string, number, or boolean. Items may appear in at most one group within a given ManualRule. Items that do not appear in any group will appear on their own.

Declaration
public virtual IList<ExtendedValue> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ExtendedValue>

Implements

IDirectResponseSchema
Back to top