Show / Hide Table of Contents

Class UpdateConditionalFormatRuleResponse

The result of updating a conditional format rule.

Inheritance
object
UpdateConditionalFormatRuleResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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
string

NewIndex

The index of the new rule.

Declaration
[JsonProperty("newIndex")]
public virtual int? NewIndex { get; set; }
Property Value
Type Description
int?

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
int?

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 Generated by DocFX