Class: Google::Apis::SheetsV4::DataValidationRule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sheets_v4/classes.rb,
lib/google/apis/sheets_v4/representations.rb,
lib/google/apis/sheets_v4/representations.rb

Overview

A data validation rule.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataValidationRule

Returns a new instance of DataValidationRule.



4437
4438
4439
# File 'lib/google/apis/sheets_v4/classes.rb', line 4437

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

Instance Attribute Details

#conditionGoogle::Apis::SheetsV4::BooleanCondition

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



4417
4418
4419
# File 'lib/google/apis/sheets_v4/classes.rb', line 4417

def condition
  @condition
end

#input_messageString

A message to show the user when adding data to the cell. Corresponds to the JSON property inputMessage

Returns:

  • (String)


4422
4423
4424
# File 'lib/google/apis/sheets_v4/classes.rb', line 4422

def input_message
  @input_message
end

#show_custom_uiBoolean Also known as: show_custom_ui?

True if the UI should be customized based on the kind of condition. If true, " List" conditions will show a dropdown. Corresponds to the JSON property showCustomUi

Returns:

  • (Boolean)


4428
4429
4430
# File 'lib/google/apis/sheets_v4/classes.rb', line 4428

def show_custom_ui
  @show_custom_ui
end

#strictBoolean Also known as: strict?

True if invalid data should be rejected. Corresponds to the JSON property strict

Returns:

  • (Boolean)


4434
4435
4436
# File 'lib/google/apis/sheets_v4/classes.rb', line 4434

def strict
  @strict
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4442
4443
4444
4445
4446
4447
# File 'lib/google/apis/sheets_v4/classes.rb', line 4442

def update!(**args)
  @condition = args[:condition] if args.key?(:condition)
  @input_message = args[:input_message] if args.key?(:input_message)
  @show_custom_ui = args[:show_custom_ui] if args.key?(:show_custom_ui)
  @strict = args[:strict] if args.key?(:strict)
end