Show / Hide Table of Contents

Class UpdateConditionalFormatRuleResponse

The result of updating a conditional format rule.

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

Properties

ETag

The ETag of the item.

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

NewIndex

The index of the new rule.

Declaration
public virtual Nullable<int> NewIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

NewRule

The new rule that replaced the old rule (if replacing), or the rule that was moved (if moved)

Declaration
public virtual ConditionalFormatRule NewRule { get; set; }
Property Value
Type Description
ConditionalFormatRule

OldIndex

The old index of the rule. Not set if a rule was replaced (because it is the same as new_index).

Declaration
public virtual Nullable<int> OldIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

OldRule

The old (deleted) rule. Not set if a rule was moved (because it is the same as new_rule).

Declaration
public virtual ConditionalFormatRule OldRule { get; set; }
Property Value
Type Description
ConditionalFormatRule

Implements

IDirectResponseSchema
Back to top