Class: Google::Apis::SheetsV4::BooleanCondition

Inherits:
Object
  • Object
show all
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

A condition that can evaluate to true or false. BooleanConditions are used by conditional formatting, data validation, and the criteria in filters.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ BooleanCondition

Returns a new instance of BooleanCondition



3532
3533
3534
# File 'generated/google/apis/sheets_v4/classes.rb', line 3532

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#typeString

The type of condition. Corresponds to the JSON property type

Returns:

  • (String)


3530
3531
3532
# File 'generated/google/apis/sheets_v4/classes.rb', line 3530

def type
  @type
end

#valuesArray<Google::Apis::SheetsV4::ConditionValue>

The values of the condition. The number of supported values depends on the condition type. Some support zero values, others one or two values, and ConditionType.ONE_OF_LIST supports an arbitrary number of values. Corresponds to the JSON property values



3525
3526
3527
# File 'generated/google/apis/sheets_v4/classes.rb', line 3525

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3537
3538
3539
3540
# File 'generated/google/apis/sheets_v4/classes.rb', line 3537

def update!(**args)
  @values = args[:values] if args.key?(:values)
  @type = args[:type] if args.key?(:type)
end