Show / Hide Table of Contents

Class UpdateConditionalFormatRuleResponse

The result of updating a conditional format rule.

Inheritance
System.Object
UpdateConditionalFormatRuleResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class UpdateConditionalFormatRuleResponse : 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
[JsonProperty("newIndex")]
public virtual 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
[JsonProperty("newRule")]
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
[JsonProperty("oldIndex")]
public virtual 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
[JsonProperty("oldRule")]
public virtual ConditionalFormatRule OldRule { get; set; }
Property Value
Type Description
ConditionalFormatRule

Implements

IDirectResponseSchema
In This Article
Back to top