Class: Google::Apis::SheetsV4::UpdateConditionalFormatRuleResponse
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::UpdateConditionalFormatRuleResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb
Overview
The result of updating a conditional format rule.
Instance Attribute Summary collapse
-
#new_index ⇒ Fixnum
The index of the new rule.
-
#new_rule ⇒ Google::Apis::SheetsV4::ConditionalFormatRule
A rule describing a conditional format.
-
#old_index ⇒ Fixnum
The old index of the rule.
-
#old_rule ⇒ Google::Apis::SheetsV4::ConditionalFormatRule
A rule describing a conditional format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateConditionalFormatRuleResponse
constructor
A new instance of UpdateConditionalFormatRuleResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UpdateConditionalFormatRuleResponse
Returns a new instance of UpdateConditionalFormatRuleResponse
4370 4371 4372 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4370 def initialize(**args) update!(**args) end |
Instance Attribute Details
#new_index ⇒ Fixnum
The index of the new rule.
Corresponds to the JSON property newIndex
4357 4358 4359 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4357 def new_index @new_index end |
#new_rule ⇒ Google::Apis::SheetsV4::ConditionalFormatRule
A rule describing a conditional format.
Corresponds to the JSON property newRule
4368 4369 4370 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4368 def new_rule @new_rule end |
#old_index ⇒ Fixnum
The old index of the rule. Not set if a rule was replaced
(because it is the same as new_index).
Corresponds to the JSON property oldIndex
4363 4364 4365 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4363 def old_index @old_index end |
#old_rule ⇒ Google::Apis::SheetsV4::ConditionalFormatRule
A rule describing a conditional format.
Corresponds to the JSON property oldRule
4352 4353 4354 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4352 def old_rule @old_rule end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4375 4376 4377 4378 4379 4380 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 4375 def update!(**args) @old_rule = args[:old_rule] if args.key?(:old_rule) @new_index = args[:new_index] if args.key?(:new_index) @old_index = args[:old_index] if args.key?(:old_index) @new_rule = args[:new_rule] if args.key?(:new_rule) end |